子类调用父类
最后更新于:2022-04-02 02:07:21
[TOC]
## 基类和派生类具有相同成员时
main.cpp
```
#include
#include
using namespace std;
class A
{
public:
void show()
{
cout << "A-show"<
## 实例中调用父类
```
B b;
b.show();
b.A::show();
```
## 多重继承的调用方法
```
void show(){
A1::show();
A2::show();
}
```
';