一道关于派生类及成员函数的C++编程题

定义一个人类,属性有:姓名、性别、年龄、职业,行为有:显示各属性值、显示所有属性值、设置属性值。再定义一个人类的派生类——学生类,增加的属性值有:学号、学校、专业、年级,... 定义一个人类,属性有:姓名、性别、年龄、职业,行为有:显示各属性值、显示所有属性值、设置属性值。再定义一个人类的派生类——学生类,增加的属性值有:学号、学校、专业、年级,并增加相应成员函数。编主程序测试之。

感觉派生类这块学得比较混乱,还望各位大虾不吝赐教~~~
展开
 我来答
chenyuanhuiwan
2010-12-03 · TA获得超过591个赞
知道小有建树答主
回答量:434
采纳率:0%
帮助的人:275万
展开全部
#include <iostream>
#include <string>
using namespace std;

class people
{
public:
people();
people(string name, string sex, int age, string work);
~people();
void set_name(string name);
string get_name();
void display_all();
private:
string name;
string sex;
int age;
string work;
};
class student : public people
{
public:
student(string name,string sex,int age,string work,string number);
void set_number(string number);//自己定义,我只声明
string get_number();//自己定义
private:
string name;
string sex;
int age;
string work;
string number;//为方便起见,只增加了学号属性

};
people::people()
{ }
people::people(string name, string sex, int age, string work)
{
this ->name = name;
this ->sex = sex;
this ->age = age;
this ->work = work;
}
people::~people()
{ }
void people::set_name(string name)
{
this ->name = name;
}
string people::get_name()
{
cout<<name;
return name;
}
void people::display_all()
{
cout<<"对象信息:"<<endl<<name<<endl<<sex<<endl<<age<<endl<<work<<endl;
}
int main()
{
people p1("wanlaoban", "男", 23, "学生");
p1.display_all();
return 0;
}

程序比较长,打了好久,我只做了重要的地方,其他该你做的我都写了提示的,自己看吧,打代码好累
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式