以下代码非常简单,我希望它应该可以正常编译。
struct A
{
struct B
{
int i = 0;
};
B b;
A(const B& _b = B())
: b(_b)
{}
};
我已经用 g++ 版本 4.7.2、4.8.1、clang++ 3.2 和 3.3 测试了这段代码。除了 g++ 4.7.2 在此代码 ( http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57770 ) 上存在段错误之外,其他经过测试的编译器给出的错误消息并不能解释太多。
g++ 4.8.1:
test.cpp: In constructor ‘constexpr A::B::B()’:
test.cpp:3:12: error: constructor required before non-static data member for ‘A::B::i’ has been parsed
struct B
^
test.cpp: At global scope:
test.cpp:11:23: note: synthesized method ‘constexpr A::B::B()’ first required here
A(const B& _b = B())
^
铿锵++ 3.2 和 3.3:
test.cpp:11:21: error: defaulted default constructor of 'B' cannot be used by non-static data member initializer which appears before end of class definition
A(const B& _b = B())
^
使此代码可编译是可能的,并且看起来应该没有区别。有两种选择:
struct B
{
int i = 0;
B(){} // using B()=default; works only for clang++
};
或者
struct B
{
int i;
B() : i(0) {} // classic c++98 initialization
};
这段代码真的不正确还是编译器错误?