为什么允许在类之外指定默认值但不在其中?

时间:2012-09-09 12:29:24

标签: c++ constructor c++11 initialization default-value

#include <atomic>
std::atomic<int> outside(1);
class A{
  std::atomic<int> inside(1);  // <--- why not allowed ?
};

error

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'

1 个答案:

答案 0 :(得分:6)

类内初始值设定项不支持初始化的(e)语法,因为设计它的委员会成员担心潜在的歧义(例如,众所周知的T t(X());声明将是模棱两可的而不是指定一个初始化但声明一个带有未命名参数的函数。)

你可以说

class A{
    std::atomic<int> inside{1};
};

或者,可以在构造函数

中传递默认值
class A {
  A():inside(1) {}
  std::atomic<int> inside;
};