c++虚基类

#include<iostream>
#include<stdlib.h>
using namespace std;
class human
{
public:
    int func(){ return 1; }
};
class father :virtual public human//有函数func() func1()
{
public:
    int func1(){ return 2; }
};
class mother :virtual public human//有函数func() func2()
{
public:
    int func2(){ return 3; }
};
class son :public father, public mother//有函数func() func() func1() func2() func3()
{
public:
    int func3(){ return 4; }
};
int main()
{
    son a;
    cout << a.father::func() << endl;
    cout << a.mother::func() << endl;
    cout << a.human::func() << endl;
    cout << a.func() << endl;//在没有说明为虚基类的时候编译错误,因为不知道调用哪一个func()函数
    cout << a.func1() << endl;
    cout << a.func2() << endl;
    cout << a.func3() << endl;
    father b;
    cout << b.func() << endl;
    cout << b.func1() << endl;
    son*p = new son;
    cout << p->func() << endl;//在没有说明为虚基类的时候编译错误
    cout << p->func1() << endl;
    cout << p->func2() << endl;
    system("pause");
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值