在 VS2013 环境,对全局变量的引用以及重新赋值,直接用全局变量名会出现:count 变量不明确的问题。
在变量名前加上 :: 符号即可。
#include
usingnamespace std;
int count =10;//全局变量初始化
int main()
{
::count =1;//全局变量重新赋值
for(;::count <=10;++::count)
{
cout <<"全局变量count="<<::count << endl;
}
return0;
}