class a { public: a(int i); }; class b { public: b(); //Gives me an error here,because it tries to find constructor a::a() a aInstance; }
我如何得到它,以便aInstance被实例化(int i),而不是尝试搜索一个默认的构造函数?基本上,我想控制从b的构造函数中调用a的构造函数.
b() : aInstance(3) {}
其中3是您要使用的初始值.虽然可以是任何int请参阅有关订单和其他注意事项的重要说明的意见.