#include<iostream> using namespace std; class father { public: void room(){cout<<"父亲的大房子,我可以访问"<<endl;} }; class Son:public father { }; int main() { Son a; a.room(); return 0; }
3.2 代码说明
类father中修饰符为public,子类可以直接访问
四 共有派生的保护成员
4.1 代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#include<iostream> using namespace std; class father { protected: void room(){cout<<"父亲的大房子,我可以访问"<<endl;} }; class Son:public father { public: void enjoy(){room();} }; int main() { Son a; //a.room(); a.enjoy(); return 0; }
4.2 代码说明
父类father中的protected方法,子类不能直接访问,通过子类的public方法,可以访问
五 公有派生的私有成员
5.1 代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#include<iostream> using namespace std; class father { private: void room(){cout<<"父亲的大房子,我可以访问"<<endl;} }; class Son:public father { public: void enjoy(){room();} }; int main() { Son a; //a.room(); a.enjoy(); return 0; }