如果A对象中有对象成员B,对象B没有默认构造函数,则对象A需要在初始化列表中初始化对象B。
A(int x,int y):b(x,y) //用初始化列表初始化对象b { cout << "A()" << endl; }