您的位置 首页 编程

C++含参数函数的承继办法

方法:先继承类然后映射函数。includeiostreamh>classanimal{public:animal(charthename);};animal::animal(charthenam

办法:先承继类然后映射函数。

#include

class animal
{
public:
animal(char thename);

};

animal::animal(char thename)
{
char name;
cout<}

class pig:public animal //先承继类,并在次写上子类映射函数
{
public:
pig(char thename);
};

pig::pig(char thename):animal(thename) //后映射函数。留意父类函数此刻无需再界说数据类型
{
}

class turtle:public animal
{
public:
turtle(char thename);
};

turtle::turtle(char thename):animal(thename)
{
}
int main()
{
pig st(M);
turtle sm(n);
return 0;
}

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/fangan/biancheng/317601.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部