Update 私有继承.cpp
This commit is contained in:
parent
1fe2b008cd
commit
badf4d86c5
@ -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");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user