我想知道为什么在这种情况下我需要声明一个默认构造函数。一方面,如果我将其排除在外,编译器不会自动执行此操作吗?无论如何,我仍然不明白为什么它是必要的。此外,即使我省略 'obj_B = origin.obj_B;' 我也会收到错误消息
class B
{
public:
bool theArray[5] ;
B(bool x) {theArray[1] = x;};
//B(){};
};
class A
{
public:
B obj_B;
A() : obj_B(1) {};
A(A const &origin) {obj_B = origin.obj_B;}; //error:no matching function for call
//to B::B()
};
int main ()
{
std::vector <A> someAs;
for(int q=0;q<10;q++)
someAs.push_back(A());
for(int q=0;q<10;q++)
std::cout << someAs[q].obj_B.theArray[1] << std::endl;
}