c++ 类和对象 继承 菱形关系

c++ 类和对象 继承 菱形关系,第1张

#include

#include

#include

#define MAX 1000

using namespace std;

class animal

{

public:

    int m_age;

};

//利用虚继承 解决菱形继承的问题

//加virtual 为虚继承 animal变为虚基类

class sheep:virtual public animal{};

class tuo:virtual public animal{};

class sheeptuo:public sheep,public tuo{};

void test01()

{

    sheeptuo st;

    st.sheep::m_age=18;

    st.tuo::m_age=28;

    cout<

    cout<

    cout<

}

int main()

{

    test01();

    system("pause");

    return 0;

}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/674292.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-19
下一篇 2022-04-19

发表评论

登录后才能评论

评论列表(0条)

保存