注意:本文中代碼均使用 Qt 開(kāi)發(fā)編譯環(huán)境
私有繼承(private)
(1)基類的public和protected成員都以private身份出現(xiàn)在派生類中奄容,但基類的private成員不可訪問(wèn)
(2)派生類中的成員函數(shù)可以直接訪問(wèn)基類中的public和protected成員,但不能訪問(wèn)基類的private成員
(3)通過(guò)派生類的對(duì)象不能訪問(wèn)基類的任何成員
例如:私有繼承舉例
#include <QCoreApplication>
#include <QDebug>
class Point {
public:
void initP(float xx=0,float yy=0){
X = xx;
Y = yy;
}
void move(float xOff,float yOff){
X += xOff;
Y += yOff;
}
float getX(){
return X;
}
float getY(){
return Y;
}
private:
float X,Y;
};
class Rectangle:private Point {
public:
void initR(float x, float y, float w, float h){
initP(x,y);
W=w;
H=h;
}
void move(float xOff,float yOff){
Point::move(xOff,yOff);//訪問(wèn)基類私有成員
}
float getX(){
return Point::getX();
}
float getY(){
return Point::getY();
}
float getH(){
return H;
}
float getW(){
return W;
}
private:
float W,H;
};
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
Rectangle rect;
rect.initR(2,3,20,10);
rect.move(3,2);
qDebug() << rect.getX() << "," << rect.getY() << ","
<< rect.getW() << "," << rect.getH();
return a.exec();
}
運(yùn)行結(jié)果:
5 , 5 , 20 , 10