作者:Manordo | 来源:互联网 | 2023-10-16 12:37
#include
using namespace std;
/*---------------------------------19.25-4.保护继承的二次派生变化 | 公有继承 | 保护继承 | 私有继承
基类的公有成员变成 | 派生类的公有成员 | 派生类的保护成员 | 派生类的私有成员
基类的保护成员变成 | 派生类的保护成员 | 派生类的保护成员 | 派生类的私有成员
基类的私有成员变成 | 只能通过基类的接口访问
---------------------------------*/
class A
{
public:void set(int a,int b){x&#61;a;y&#61;b;}void show(){ cout<protected:int x;
private:int y;
};
class B:protected A //保护继承 类A的公有和保护成员成为类B的保护成员
{
public:void setb(int a,int b){ set(a,b);}void setxy(int a,int b){x&#61;a; //y&#61;b; //编译报错&#xff0c;不能访问}void showb(){ show();}
};
class C:protected B //二次派生 保护继承 类B的保护成员成为类C的保护成员
{
public:void setc(int a,int b){ set(a,b);} //类A被类B保护继承&#xff0c;类B继续保护派生&#xff0c;故基类A 的set可以间接访问//void setc(int a,int b){ setb(a,b);} //这样也允许void showc(){ showb();}
};
int main()
{C b; //定义类C的对象
// b.setb(1,2); //不可直接访问从类B保护继承来的成员
// b.showb();cout<<"----------"<// b.setxy(3,4);
// b.showb();cout<<"----------"<}运行结果&#xff1a;----------
----------
5
6
Press any key to continue