使用父类的作用域来调用同名方法。比如:class Base { public:void Show(){ cout << "Base:Show!" << endl;} } class Child : public Base { public:void Show(){ cout << "Child:Show!" << endl;//调用父类同名方法 Base::Show();} } ...