C++ 解释继承,重载,覆盖 《C++多线程编程实战》

#include <iostream>

using namespace std;

class CPerson
{
public:
	CPerson(int iAge, const char* sName)
	{
		this->iAge = iAge;
		strcpy_s(this->sName, 32, sName); //安全函数,保障有效的缓冲区尺寸
	}
	virtual const char* WhoAmI()
	{
		return "I am a  Person";
	}
private:
	int iAge;
	char sName[32];
};

class CWorker : public CPerson
{
public:
	CWorker(int iAge, const char* sName, const char* sEmploymentStatus)
		: CPerson(iAge, sName)
	{
		strcpy_s(this->sEmploymentStatus, 32, sEmploymentStatus);
	}
	virtual const char* WhoAmI()
	{
		return "I am a worker";
	}
private:
	char sEmploymentStatus[32];
};

class CStudent : public CPerson
{
public:
	CStudent(int iAge, const char* sName, const char* sStudentIdentityCard)
		: CPerson(iAge, sName)
	{
		strcpy_s(this->sStudentIdentityCard, 32, sStudentIdentityCard);
	}
	virtual const char* WhoAmI()
	{
		return "I am a student";
	}
private:
	char sStudentIdentityCard[32];
};

int main(int argc,char* argv[])
{
	CPerson cPerson(10, "John");
	cout << cPerson.WhoAmI() << endl;

	CWorker cWorker(35, "Mary", "On wacation");
	cout << cWorker.WhoAmI() << endl;

	CStudent cStudent(22, "Sandra", "Phisician");
	cout << cStudent.WhoAmI() << endl;
    return 0; 
}

运行结果
在这里插入图片描述

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值