开发者社区> 问答> 正文

一个关于c++作用域的问题

#include
using namespace std;
void a(int i);
int x=1;
int main()
{
int x=5;
cout<<"local x in outer scope of main is "<<x<<endl;
{
int x=7;
cout<<"local x in inner scope of main is "<<x<<endl;
}
cout<<"local x in outer scope of main is "<<x<<endl;
a(10);  //使用了全局变量 

return 0;
}
void a(int i)
{
cout<<endl<<"global x is "<<x<<" on entering a";
x*=i;
cout<<endl<<"global x is "<<x<<" on entering a";
}

这段代码中“a(10);”为什么调用的是“x=1"这个全局变量?

展开
收起
a123456678 2016-03-06 10:03:00 1782 0
1 条回答
写回答
取消 提交回答
  • void a(int i)
     {
     cout<<endl<<"global x is "<<x<<" on entering a";
     x*=i;
     cout<<endl<<"global x is "<<x<<" on entering a";
     }

    请看函数a的定义,里面

    cout<这句x在函数中是没有申明的,说明x是全局变量,而我们可以看到在main函数之外就定义了全局变量x,并初始化为1了。

    2019-07-17 18:54:05
    赞同 展开评论 打赏
问答分类:
C++
问答标签:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
使用C++11开发PHP7扩展 立即下载
GPON Class C++ SFP O;T Transce 立即下载
GPON Class C++ SFP OLT Transce 立即下载