码迷,mamicode.com
首页 > 其他好文 > 详细

static变量,全局变量,局部变量

时间:2017-05-10 19:58:05      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:name   return   std   c++   cout   out   stat   为什么   article   

/*
  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变量,全局变量,局部变量

标签:name   return   std   c++   cout   out   stat   为什么   article   

原文地址:http://www.cnblogs.com/ljbguanli/p/6837524.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!