用C++生成分别定义教师类Teacher和干部类Cadre,采用多重继承的方式由这两个类派生出新类Teacher_Cadre(教师兼干部类)。要求: (1)在两个基类中都包含姓名、年龄、性别、地址、电话数据成员。 (2)在Teacher类中还包含数据成员职称title,在Cadre类中还包含数据成员职务post,在Teacher_Cadre类中还包含数据成员工资wage。 (3)对两个基类中的姓名、年龄、性别、地址、电话数据成员用相同的名字,在访问这类数据成员时,指定作用域。 (4)在类体中声明成员函数,在类外定义成员函数。 (5)在派生类Teacher_Cadre的成员函数show中调用Teacher类中的display函数,输出姓名、年龄、性别、地址、电话,然后再用cout语句输出职务和工资。
时间: 2023-06-09 07:08:05 浏览: 156
c++ 定义一个字符栈类Stack(包括类的实现)。数据成员包括一个存放字符的数组stck[ ]和一个栈指针tos。栈.pdf
答:好的,以下是代码实现:
```
#include<iostream>
#include<string>
using namespace std;
class Teacher {
public:
string name;
int age;
char gender;
string address;
string phone;
Teacher(string name, int age, char gender, string address, string phone, string title) {
this->name = name;
this->age = age;
this->gender = gender;
this->address = address;
this->phone = phone;
this->title = title;
}
void display() {
cout << "姓名:" << name << endl;
cout << "年龄:" << age << endl;
cout << "性别:" << gender << endl;
cout << "地址:" << address << endl;
cout << "电话:" << phone << endl;
}
string title;
};
class Cadre {
public:
string name;
int age;
char gender;
string address;
string phone;
Cadre(string name, int age, char gender, string address, string phone, string post) {
this->name = name;
this->age = age;
this->gender = gender;
this->address = address;
this->phone = phone;
this->post = post;
}
void display() {
cout << "姓名:" << name << endl;
cout << "年龄:" << age << endl;
cout << "性别:" << gender << endl;
cout << "地址:" << address << endl;
cout << "电话:" << phone << endl;
}
string post;
};
class Teacher_Cadre : public Teacher, public Cadre {
public:
Teacher_Cadre(string name, int age, char gender, string address, string phone, string title, string post, float wage)
: Teacher(name, age, gender, address, phone, title), Cadre(name, age, gender, address, phone, post) {
this->wage = wage;
}
float wage;
void show() {
Teacher::display();
cout << "职务:" << post << endl;
cout << "工资:" << wage << endl;
}
};
int main() {
Teacher_Cadre tc("小明", 30, '男', "北京市海淀区", "18888888888", "高级讲师", "教务主任", 10000);
tc.show();
return 0;
}
```
解释一下:
首先定义了两个基类 Teacher 和 Cadre,分别包含相同的数据成员和 display 函数。接着定义了要派生的类 Teacher_Cadre,采用多重继承方式同时继承了 Teacher 和 Cadre,增加了工资数据成员和 show 函数。在构造函数中分别调用两个基类的构造函数初始化数据成员,注意需要分别传递两个基类中的数据成员值。在 show 函数中先调用 Teacher 类中的 display 函数输出姓名、年龄、性别、地址和电话,再用 cout 输出职务和工资。
在 main 函数中创建一个 Teacher_Cadre 类型的对象 tc,传递相应的成员数据值,并调用其中的 show 函数,即可输出定义的所有信息。
阅读全文