//当同时存在直接基类和间接基类时,每个派生类只负责其直接基类的构造。 #include using namespace std; class A { int x; public: A(int aa) { x=aa; cout<<"Constructing A"<