static变量,全局变量,局部变量
Posted ljbguanli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了static变量,全局变量,局部变量相关的知识,希望对你有一定的参考价值。
/* c++ static变量,全局变量。局部变量 */ #include<iostream> using namespace std; static int x=1; static int y=2; struct A { static int x; static int y; }; int A::x=3; int A::y= x;//3 为什么是3,原因在哪里 //int A::y= ::x; //1 为什么是1,原因在哪里 int main() { cout<<A::y<<endl;//3 cout<<A::x<<x<<A::y<<y<<endl;//3 1 3 2 return 0; }
以上是关于static变量,全局变量,局部变量的主要内容,如果未能解决你的问题,请参考以下文章
static全局变量与普通的全局变量有什么区别?static局部变量和普通局部变量有什么区别?static函数与普通函数有什么区别?