明確にするために、以下の例を検討してください。
class A{
public:
A(int i){...}
}
class B{
private:
A A_instance;
public:
B(){
...
//how can i initialize the A_instance with specific constructor ?
...
}
}
あなたは私の問題が何であるかを理解していると思います(知識の欠如:D)。クラス B の特定のコンストラクターで A_instance を初期化するにはどうすればよいですか?