最佳答案
比方说,我有一个类型,我想把它的缺省构造函数设置为私有的:
class C {
C() = default;
};
int main() {
C c; // error: C::C() is private within this context (g++)
// error: calling a private constructor of class 'C' (clang++)
// error C2248: 'C::C' cannot access private member declared in class 'C' (MSVC)
auto c2 = C(); // error: as above
}
很好。
但是,这个构造函数并不像我想象的那样是私有的:
class C {
C() = default;
};
int main() {
C c{}; // OK on all compilers
auto c2 = C{}; // OK on all compilers
}
这种行为让我感到非常惊讶,出乎意料,而且明显是不受欢迎的。为什么这样就可以了?