一个变量只能定义一次,但可以多次声明。
在你要用到此变量的地方用extern声明即可
例如:
//A.cpp
int a;
//B.cpp
exterin int a;
此后就可以使用该变量了
#include
#include
#include
using namespace std;
void main()
{
//创建文件,输入点内容来测试
string str="Hello World";
ofstream fp;
fp.open("temp.txt");
fp<
//读取文件内容
string temp;
ifstream ftemp;
ftemp.open("temp.txt",ios::in);
ftemp>>temp;
cout<
}