真¤全局变量出现……
在其他文件使用某文件中定义过的变量时,只需extern一下…简单方便。
比如…
//LotusLand.cpp
…
int cirno=9;
…
//wuzhihu.cpp(...)
…
entern cirno;
cout>>cirno>>endl;
…
在其他文件使用某文件中定义过的变量时,只需extern一下…简单方便。
比如…
//LotusLand.cpp
…
int cirno=9;
…
//wuzhihu.cpp(...)
…
entern cirno;
cout>>cirno>>endl;
…