派生类与继承
- class person{protected:char name[10];int age;char sex;public:void print();}; - class em