C++学习笔记——私有继承
程序员文章站
2022-01-21 19:02:20
...
当类的继承方式为私有继承时,在派生类中,基类的共有成员和保护成员作为派生类的私有成员。此时有:派生类的成员函数可以直接访问基类的共有成员和保护成员,而无法直接访问基类的私有成员。
在类外部,派生类的成员无法访问基类的所有成员。
举个栗子:
调用库:
#include<iostream>
using namespace std;
基类:
// 基类
class Point
{
public: // 公有成员
void setxy(int myx, int myy) { X = myx; Y = myy; }; // 两个外部接口
void movexy(int x, int y) { X += x; Y += y; };
protected: // 保护成员
int X, Y;
};
派生类:
// 派生类
class Circlr :private Point
{
public:
void setr(int myx, int myy, int r) { setxy(myx, myy); R = r; };
void movexy(int x, int y) { Point::movexy(x, y); }; // 基类中的movexy()接口变为派生类的私有成员,外部无法直接访问,需要增加新的外部接口。
void display();
private:
int R;
};
void Circlr::display()
{
cout << "The position of center is: ";
cout << "(" << X << " , " << Y << ")" << endl;
cout << "The radius of circle is " << R << endl;
}
主函数:
int main()
{
Circlr c;
c.setr(2, 3, 4);
cout << "Thre start data of circlr : " << endl;
c.display();
c.movexy(7, 8);
cout << "The new data of Circle : " << endl;
c.display();
return 0;
}
运行结果:
Thre start data of circlr :
The position of center is: (2 , 3)
The radius of circle is 4
The new data of Circle :
The position of center is: (9 , 11)
The radius of circle is 4
注意事项:
在私有继承时,基类的外部接口会被封装成派生类的私有成员!!!