我在其中一个cpp文件中有一个全局变量,我在其中为其赋值.现在为了能够在另一个cpp文件中使用它,我将其声明为extern,并且此文件具有多个使用它的函数,因此我在全局范围内执行此操作.现在,可以在其中一个函数中访问此变量的值,而不是在另一个函数中访问.除了在头文件中使用它之外的任何建议都会很好,因为我浪费了4天玩这个.
解决方法:
对不起,我忽略了除了使用头文件之外的其他任何答案的请求.当你正确使用它们时,这就是标题的用途……仔细阅读:
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;
}
现在,当您编译和链接项目时,您必须:
>将每个源(.cpp)文件编译为目标文件;
>链接所有目标文件以创建可执行文件/库/任何内容.
使用我上面给出的语法,您既不应该编译也不应该链接错误.