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