Update 私有继承.cpp

This commit is contained in:
Francis 2020-10-12 11:21:18 +08:00 committed by GitHub
parent 1fe2b008cd
commit badf4d86c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,9 +7,9 @@ public:
int getx(){return x; }
void showx(){cout<<x<<endl; }
};
//私有继承
//基类的中的public成员在派生类中是private, private成员在派生类中不可访问。
class derived:private base{
//私有继承
//基类的中的public成员在派生类中是private, private成员在派生类中不可访问。
class derived:private Base{
int y;
public:
void sety(int n){y=n; }
@ -22,5 +22,4 @@ int main(){
obj.sety(20);
obj.showx();//cannot access
obj.showy();
system("pause");
}