为清楚起见,请考虑以下示例:
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?