为了账号安全,请及时绑定邮箱和手机立即绑定

:后面如何写:ChildLabourer(string name, int age):

:后面如何写:ChildLabourer(string name, int age):

正在回答

4 回答

两个基类加传参 :Worker(name), Children(age)

0 回复 有任何疑惑可以回复我~

初始化列表:

ChildLabourer(string name, int age):Worker(name),Children(age)

0 回复 有任何疑惑可以回复我~

class ChildLabourer:public Worker,public Children

{

public:

ChildLabourer(string name, int age):Worker(name),Children(age)

{

cout << "ChildLabourer" << endl;

}

~ChildLabourer()

{

cout << "~ChildLabourer" << endl;

}

};


0 回复 有任何疑惑可以回复我~

class ChildLabourer:public Worker,public Children

{

public:

ChildLabourer(string name="Jack", int age=21):Worker(name),Children(age)

{

cout << "ChildLabourer" << endl;

}


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C++远征之继承篇
  • 参与学习       75203    人
  • 解答问题       249    个

继承,C++面向对象三大特征之一,通过编码实践方式讲解到操作层面

进入课程

:后面如何写:ChildLabourer(string name, int age):

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信