VC++如何调用其它源文件里的函数和变量?

2024-11-30 12:50:00
推荐回答(1个)
回答1:

全局变量可以。
一cpp:
std::vector wtf;

另一cpp:
extern std::vector wtf;

然后另一cpp里也可以用了