为什么类支持在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;
}