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