タイプがあり、そのデフォルトのコンストラクタをプライベートにしたいとします。私は次のように書きます:
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{};
集約初期化ではないので、コンストラクターは呼び出されませんか?