这个问题在这里已经有一个答案:>
Default constructor with empty brackets8
在 this问题上,我发现行为不一致.
在 this问题上,我发现行为不一致.
struct A { }; struct B : public A { B(){} private: B(const B&); }; void f( const B& b ) {} int main() { A a( B() ); // works A const & a2 = B(); // C++0x: works,C++03: fails f( B() ); // C++0x: works,C++03: fails }
我已经测试了C 03与g -4.1和Comeau 4.2.45.2在严格C 03模式和C 0x扩展禁用.我得到了相同的结果.
对于C 0x,在轻松模式下使用g -4.4和Comeau 4.3.9进行了测试,并启用了C 0x扩展.我得到了相同的结果.