// 基类 class father { fgive() 函数 fgiveup() 函数 }; class mather { mgive() 函数 mgiveup() 函数 }; | |
//派生类(单个继承) class big_son : public Animal {
}; | |
// 派生类 (继承多个) class smoll_som: public father, public mather{ }; |
c++中单个继承和多个继承的写法
最新推荐文章于 2024-09-12 15:47:59 发布