【无标题】10.9 c++ 多重继承

 //定义一个学生类(Student):私有成员属性(姓名、年龄、分数)、成员方法
//(无参构造、有参构造、析构函数、show函数)
//再定义一个党员类(Party):私有成员属性(党组织活动,组织),成员方法
//(无参构造、有参构造、析构函数、show函数)。
//由这两个类共同派生出学生干部类,私有成员属性(职位),成员方法(无参
//构造、有参构造、析构函数、show函数),使用学生干部类实例化一个对象,然后
//调用其show函数进行测试

#include <iostream>


//定义一个学生类(Student):私有成员属性(姓名、年龄、分数)、成员方法
//(无参构造、有参构造、析构函数、show函数)
//再定义一个党员类(Party):私有成员属性(党组织活动,组织),成员方法
//(无参构造、有参构造、析构函数、show函数)。
//由这两个类共同派生出学生干部类,私有成员属性(职位),成员方法(无参
//构造、有参构造、析构函数、show函数),使用学生干部类实例化一个对象,然后
//调用其show函数进行测试
using namespace std;

class student
{
private:
    string name;
    int age;
    double score;
public:
    //无参构造
    student()
    {
        cout<<"student::无参构造"<<endl;
    }

    //有参构造
    student(string name,int age,double score):name(name),age(age),score(score)
    {
        cout<<"student::有参构造"<<endl;
    }

    //析构函数
    ~student()
    {
        cout<<"student::析构函数"<<endl;
    }

    //show
    void show()
    {
         cout<<"student::student"<<endl;
         cout<<"name= "<<name<<endl;
         cout<<"age= "<<age<<endl;
         cout<<"score= "<<score<<endl;
    }
};

class party
{
private:
    string activity;
    string organization;
public:
    //无参构造
    party()
    {
        cout<<"party::无参构造"<<endl;
    }

    //有参构造
    party(string activity, string organization):activity(activity),organization(organization)
    {
        cout<<"party::有参构造"<<endl;
    }

    //析构函数
    ~party()
    {
        cout<<"party::析构函数"<<endl;
    }

    //show
    void show()
    {
         cout<<"party::party"<<endl;
         cout<<"activity= "<<activity<<endl;
         cout<<"organization= "<<organization<<endl;
    }
};

class student_cadre: public student,public party
{
private:
    string position; //职位


public:
        //无参构造
        student_cadre()
        {
            cout<<"student_cadre::无参构造"<<endl;
        }

        //有参构造
        student_cadre(string name,int age,double score,string activity, string organization, string position):
            student(name,age,score),party(activity,organization),position(position)
       {
            cout<<"student_cadre::有参构造"<<endl;
        }

        //析构函数
        ~student_cadre()
        {
            cout<<"student_cadre::析构函数"<<endl;
        }

        //show
        void show()
        {
            student::show();
            party::show();
            cout<<"student_cadre::student_cadre"<<endl;
            cout<<"position= "<<position<<endl;
        }
};

int main()
{
    student_cadre s1("小黄弟弟",18,88,"党员大会","党组织","党委书记");
    s1.show();
    return 0;
}

效果图:

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值