Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「is_private_constructor」のような型特性関数をクラスのデフォルトコンストラクターがプライベートである特性に記述する方法 (クラスはインスタンス化できます) ?
C++11 では、スペルが異なるだけです:std::is_default_constructible<Ty>は header で定義されてい<type_traits>ます。
std::is_default_constructible<Ty>
<type_traits>