#include <atomic>
std::atomic<int> outside(1);
class A{
std::atomic<int> inside(1); // <--- why not allowed ?
};
prog.cpp:4:25: error: expected identifier before numeric constant
prog.cpp:4:25: error: expected ',' or '...' before numeric constant
在VS11中
C2059: syntax error : 'constant'
答案 0 :(得分:6)
类内初始值设定项不支持初始化的(e)
语法,因为设计它的委员会成员担心潜在的歧义(例如,众所周知的T t(X());
声明将是模棱两可的而不是指定一个初始化但声明一个带有未命名参数的函数。)
你可以说
class A{
std::atomic<int> inside{1};
};
或者,可以在构造函数
中传递默认值class A {
A():inside(1) {}
std::atomic<int> inside;
};