静态成员变量的初始化

时间:2017-09-06 17:43:56

标签: c++ static

为什么类支持在static内部静态变量的初始化 具有const关键字且没有const关键字的类为什么不允许使用 初始化类

中的静态变量
class test  
{  
public:  
 int x;  

 static int y = 2; // It will throw an error  
 static const int z = 3; // It will not throw an error, why?  
};  

int main()  
{  
   return 0;  
}  

0 个答案:

没有答案