自考新教材-p268

Posted duanqibo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自考新教材-p268相关的知识,希望对你有一定的参考价值。

虚基类

源程序:

#include <iostream>

using namespace std;

class A{

public:

int a;

void showa(){

cout<<"a="<<a<<endl;

}

};

class B:virtual public A{

public:

int b;

};

class C:virtual public A{

public:

int c;

};

class D:public B,public C{

public:

int d;

};

int main(){

D Dobj;

Dobj.a = 11;

Dobj.b = 22;

Dobj.showa();

cout<<"Dobj.b="<<Dobj.b<<endl;

return 0;

}

运行结果:

技术图片

以上是关于自考新教材-p268的主要内容,如果未能解决你的问题,请参考以下文章

自考新教材-p181

自考新教材-p156

自考新教材-p161

自考新教材-p159

自考新教材-p286

自考新教材-p285