假设我有一个类型,我想将其默认构造函数设为私有。我写了以下内容:
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
}
这让我觉得非常令人惊讶、出乎意料和明显不受欢迎的行为。为什么这样可以?