欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

c++基础-继承与派生,定义基类person和公有派生类student

程序员文章站 2022-07-15 17:00:05
...

①定义基类person,数据成员name,sex,age,构造函数,析构函数,输出name,sex,age的函数display()。
②定义公有派生类student,数据成员:num,构造函数,析构函数,输出name,sex,age,num的函数display()。
③ 主函数定义并使用student 对象stu。

#include<iostream>
#include<string>
using namespace std;
class person{						//基类
public:
	person() {						//构造函数
		cout << "Please enter the name,sex and age:" << endl;
		cin >> name >> sex>> age;
		cout<<endl;
	}
	~person() {}					//析构函数
	void display() {				//输出函数
		cout << "This person's information: "<<name<<" "<<sex<<" "<<age;
	}
private:			
	string name;
	string sex;
	int age;
};
class student :public person {		//公有派生类
public:
	student() {
		cout << "Please enter the student number of person:" << endl;
		cin >> num;
		cout << endl;
	}
	~student() {}
	void display() {				//student类信息输出函数,先调用了person的输出函数
		person::display(); cout << " " << num << endl;
	}
private:
	int num;
};
int main() {
	student stu;
	stu.display();
	return 0;
}