【C++】——继承和派生

🎃个人专栏:

🐬 算法设计与分析:算法设计与分析_IT闫的博客-CSDN博客

🐳Java基础:Java基础_IT闫的博客-CSDN博客

🐋c语言:c语言_IT闫的博客-CSDN博客

🐟MySQL:数据结构_IT闫的博客-CSDN博客

🐠数据结构:​​​​​​数据结构_IT闫的博客-CSDN博客

💎C++:C++_IT闫的博客-CSDN博客

🥽C51单片机:C51单片机(STC89C516)_IT闫的博客-CSDN博客

💻基于HTML5的网页设计及应用:基于HTML5的网页设计及应用_IT闫的博客-CSDN博客​​​​​​

🥏python:python_IT闫的博客-CSDN博客

欢迎收看,希望对大家有用!

目录

🎯第一题:

[🎯 第二题:](#🎯 第二题:)

[🎯 第三题:](#🎯 第三题:)

[🎯 答案:](#🎯 答案:)

💻第一题:

💻第二题:

💻第三题:

🎯第一题:

编写一个学生类,学生数据有编号、姓名、年龄、专业和成绩,要求将编号、姓名、年龄数据设计成一个人类Person,并作为学生类Student的基类。创建Student类对象,并使用显示show()函数对数据进行输出。

🎯 第二题:

设计职员类employee,它继承Person类并包含子对象Date类对象。要求将编号、姓名、性别设计成类Person,Date类包含年、月、日;职员类另有部门及职务成员数据。主程序创建职员类对象并输出信息。

🎯 第三题:

已有类Time和Date,要求设计一个派生类Birth,它继承类Time和类Date,并且增加一个数据成员childname用于表示小孩的名字,设计show函数显示信息;主程序创建Birth类对象并调用show()函数显示信息。

💻第一题:

cpp 复制代码
#include <iostream>

using namespace std;

class Person {

private:

string _id;

string _name;

int _age;

public:

Person(string id,string name,int age);

void show();

};

Person::Person(string id,string name,int age) {

_id=id;

_name=name;

_age=age;

}

void Person::show() {

cout<<"编号:"<<_id<<endl;

cout<<"姓名:"<<_name<<endl;

cout<<"年龄:"<<_age<<endl;

}

//派生类

class Student:public Person {

private:

string _major;

int _score;

public:

Student(string id,string name,int age,string major,int score);

void show();

};

Student::Student(string id,string name,int age,string major,int score)

:Person(id,name,age) {

_major=major;

_score=score;

}

void Student::show() {

Person::show();

cout<<"专业:"<<_major<<endl;

cout<<"成绩:"<<_score<<endl;

}

int main() {

Student stu1("s10001","zhangsan",20,"软件工程",95);

stu1.show();

return 0;

}

💻第二题:

cpp 复制代码
#include <iostream>

using namespace std;

class Person {

private:

string _id;

string _name;

string _sex;

public:

Person(string id,string name,string sex);

void show();

};

Person::Person(string id,string name,string sex) {

_id=id;

_name=name;

_sex=sex;

}

void Person::show() {

cout<<"编号:"<<_id<<endl;

cout<<"姓名:"<<_name<<endl;

cout<<"性别:"<<_sex<<endl;

}

class Date {

public:

Date(int y,int m,int d) {

_year=y;

_month=m;

_day=d;

}

void display() {

cout<<"出生日期:"<<_year<<"."<<_month<<"."<<_day<<endl;

}

protected:

int _month,_day,_year;

};

class Employee:public Person {

public:

Employee(string id,string name,string sex,int y,int m,int d,string dept,string duty);

void show();

private:

Date date;

string _dept;

string _duty;

};

/*************************************************************/

Employee::Employee(string id,string name,string sex,int y,int m,int d,string dept,string duty)

      :date(y,m,d),Person(id,name,sex) {

_dept=dept;

_duty=duty;

}

void Employee::show() {

Person::show();

date.display();

cout<<"部门:"<<_dept<<endl;

cout<<"职务:"<<_duty<<endl;

}

/*************************************************************/

int main() {

Employee employee("10001","杨萍","女",1990,9,29,"团委","团委书记");

employee.show();

return 0;

}

💻第三题:

cpp 复制代码
#include <iostream>

using namespace std;

class Time {

public:

Time(int h,int min,int s) {

hours=h;

minutes=min;

seconds=s;

}

void display() {

cout<<"出生时间:"<<hours<<"时"<<minutes<<"分"<<seconds<<"秒"<<endl;

}

protected:

int hours,minutes,seconds;

};

class Date {

public:

Date(int y,int mon,int d) {

year=y;

month=mon;

day=d;

}

void display() {

cout<<"出生日期:"<<year<<"年"<<month<<"月"<<day<<"日"<<endl;

}

protected:

int year,month,day;

};

class Birth:public Date,public Time{

public:

Birth(string name,int y,int mon,int d,int h,int min,int s);

void show();

private:

string childname;

};

/********************************************************************/

Birth::Birth(string name,int y,int mon,int d,int h,int min,int s):Date(y,mon,d),Time(h,min,s){

childname=name;

}

void Birth::show(){

cout<<"姓名:"<<childname<<endl;

Date::display();

Time::display();

}

/********************************************************************/

int main() {

    Birth birth("李雷",2003,7,1,13,10,10);

    birth.show();

return 0;

}
相关推荐
普if加的帕7 分钟前
java Springboot使用扣子Coze实现实时音频对话智能客服
java·开发语言·人工智能·spring boot·实时音视频·智能客服
2301_8076114936 分钟前
77. 组合
c++·算法·leetcode·深度优先·回溯
安冬的码畜日常1 小时前
【AI 加持下的 Python 编程实战 2_10】DIY 拓展:从扫雷小游戏开发再探问题分解与 AI 代码调试能力(中)
开发语言·前端·人工智能·ai·扫雷游戏·ai辅助编程·辅助编程
朝阳5811 小时前
Rust项目GPG签名配置指南
开发语言·后端·rust
微网兔子1 小时前
伺服器用什么语言开发呢?做什么用什么?
服务器·c++·后端·游戏
朝阳5811 小时前
Rust实现高性能目录扫描工具ll的技术解析
开发语言·后端·rust
程高兴1 小时前
基于Matlab的车牌识别系统
开发语言·matlab
YuforiaCode1 小时前
第十三届蓝桥杯 2022 C/C++组 修剪灌木
c语言·c++·蓝桥杯
YOULANSHENGMENG2 小时前
linux 下python 调用c++的动态库的方法
c++·python
牛马baby2 小时前
Java高频面试之并发编程-07
java·开发语言·面试