非常快速的 Globals.h 问题(包括在内,有些项目仍然未定义)
使用 globals.h 我希望存储一个矩形向量以及一个碰撞盒和一些全局布尔值
globals.h
extern SDL_Rect winRect;
extern std::vector<SDL_Rect> platform;
extern bool paused;
extern bool exit;
我可以将布尔值设置为 false,就像在 globals.cpp 中一样。
bool paused = false;
bool exit = false;
然而,当我尝试使用全局 winRect SDL_Rect 或 SDL_Rects 的全局向量时,编译器会吐出“对平台的未定义引用”或“对 winRect”。我无法理解,因为它们是在 globals.h 文件中设置的,并且 globals.h 包含在尝试使用它们的类标头中,
我是否需要在 globals.cpp 中定义有关向量和矩形的其他任何内容文件?
我尝试操作全局变量的类的标头包含顺序可能有问题吗?
希望有一个简单的解决方案,我确信我只是错过了一些东西。
using globals.h im hoping to store a vector of rectangles and also a collision box and a few global bools
globals.h
extern SDL_Rect winRect;
extern std::vector<SDL_Rect> platform;
extern bool paused;
extern bool exit;
i can set the bool to false as so in the globals.cpp.
bool paused = false;
bool exit = false;
however then when i try and use the global winRect SDL_Rect or the global vector of SDL_Rects the compiler spits out the "undefined reference to platform" or "to winRect". which i cant understand because they are set up in the globals.h file, and the globals.h is included within the class header that is trying to use them
do i need to define anything else regarding the vector and rect in the globals.cpp file?
might there be something wrong with the order of my header inclusions for the class im trying to manipulate the globals with?
hope there is an easy solution to this, im sure im just missing something.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在 globals.cpp 中定义 winRect 和 platform:
Extern 只告诉编译器变量和/或函数是在另一个地方定义的,如果您不定义它,链接器会给您一个错误,因为它找不到定义。
You need to define winRect and platform in globals.cpp:
Extern only tells the compiler that the variable and/or the function is defined in another place and if you do not define it, the linker will give you an error because it cannot find the definition.
a) 使用命名空间,可能存在命名冲突。
b) 在定义它的向量之前包含定义
SDL_Rect
类型的标头a) Use namespace, probably you have naming collision.
b) include header where your
SDL_Rect
type is defined before defining vector of it