当前位置:   article > 正文

c++基础-多重继承,teacher和cadre两个基类派生出新类teacher_carde_c++ 继承两个类 teachercadre.person::name

c++ 继承两个类 teachercadre.person::name

分别声明Teacher(教师)类和Cadre(干部)类,采用多重继承方式由这两个类派生出新类Teacher_Cadre(教师兼干部)。
要求:
①在两个基类中都包含一部分相同名字的数据成员name(姓名),age(年龄)和成员函数display()。
②在Teacher类中还包含数据成员title(职称),在Cadre类中还包含数据成员post(职务),在Teacher_Cadre(教师兼干部)中还包含数据成员wages(工资)。
③在派生类Teacher_Cadre的成员函数show输出姓名、年龄、职称,职务与工资。
④主函数定义Teacher_Cadre对象tc,输出其信息。

#include<iostream>
#include<string>
using namespace std;
class teacher{				//第一个基类teacher
public:
	teacher() {						
		cout << "Please enter the name,age and title:" << endl;
		cin >> name >> age>> title;
		cout<<endl;
	}
	void display() {				
		cout << "This person's information: " <<endl<< "name: "<<name<<"age: "<<age<<"title: "<<title;
	}
protected:					//protected成员可被派生类的成员函数访问
	string name;
	string title;
	int age;
};
class cadre {				//第二个基类cadre
public:
	cadre() {
		cout << "Please enter the name,age and post:" << endl;
		cin >> name>>age>>post;
		cout << endl;
	}
	void display() {
		cout << "This person's information: " <<endl<< "name: " << name << "age: " << age << "post: " << post;
	}
protected:
	string name;
	string post;
	int age;
};
class teacher_cadre:public teacher,public cadre{		//对第一,二两个基类的双重继承的派生类teacher_cadre
public:
	teacher_cadre() {									//派生类的构造函数只需对派生类新增成员进行构造
		cout << "Please enter the wages: " << endl;
		cin >>wages;
		cout << endl;
	}
	void display() {									//派生类调用两个基类共有成员时,加作用域符进行指定
		cout << "This person's information: " << endl;
		cout << "name: " << teacher::name << endl;
		cout << "age: " << teacher::age << endl;
		cout << "title: " << title << endl;
		cout << "post: " << post << endl;
		cout << "wages: " << wages<<endl;
	}
protected:
	double wages;
};
int main() {
	teacher_cadre tc;
	tc.teacher_cadre::display();			//基类与派生类含有同名函数时,可加作用域符::进行指定
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56

派生类中继承基类的部分由基类的初始化构造函数完成构造 ⬇

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/106060
推荐阅读
相关标签
  

闽ICP备14008679号