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.
だから私はbaseコンストラクターを持つクラスを持っています(T V). 次のようなものを作成したいobjコンストラクターを持つクラスを継承しました()
base
(T V)
obj
()
base * new_list_item = new obj()
T val;しかし、C++ でobj ベース コンストラクター値に渡す方法は?
T val;
初期化リストを使用します。
class obj : public base { public: obj(T v) : base(v) {} };