我在其中一个cpp文件中有一个全局变量,我在其中为其分配值。现在,为了能够在另一个cpp文件中使用它,我将其声明为extern
,并且此文件具有多个使用它的函数,因此我在全局范围内执行此操作。现在,可以在其中一个函数中访问此变量的值,而不是在另一个函数中访问。除了在头文件中使用它之外的任何建议都会很好,因为我浪费了4天玩这个。
答案 0 :(得分:31)
抱歉,我忽略了除了使用头文件之外的其他任何答案的请求。当你正确使用它们时,这就是标题的用途......仔细阅读:
<强> global.h 强>
#ifndef MY_GLOBALS_H
#define MY_GLOBALS_H
// This is a declaration of your variable, which tells the linker this value
// is found elsewhere. Anyone who wishes to use it must include global.h,
// either directly or indirectly.
extern int myglobalint;
#endif
<强> global.cpp 强>
#include "global.h"
// This is the definition of your variable. It can only happen in one place.
// You must include global.h so that the compiler matches it to the correct
// one, and doesn't implicitly convert it to static.
int myglobalint = 0;
<强> user.cpp 强>
// Anyone who uses the global value must include the appropriate header.
#include "global.h"
void SomeFunction()
{
// Now you can access the variable.
int temp = myglobalint;
}
现在,在编译和链接项目时,您必须:
使用我上面给出的语法,你既没有编译也没有链接错误。