假设我有一个类型,并且想将其默认构造函数设为私有。我写以下内容:
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
}
这使我感到非常惊奇,意外和明显不受欢迎的行为。为什么这样可以?
C c{};
聚合初始化,所以没有调用构造函数?