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.
タイトルのとおり、派生クラスのコピー コンストラクターから基底クラスのコピー コンストラクターを呼び出すにはどうすればよいでしょうか。
初期化リストで基本初期化を指定できます。
Derived:: Derived( const Derived& other ): Base( other ) { /* ... */ }
Derived( Derived const& d ) : Base(d) /* some member initialization */ { /* ... */ }
何か不足していますか?