person.cpp

来自「教职员工及非教职员工数据库管理系统」· C++ 代码 · 共 46 行

CPP
46
字号
// Person.cpp: implementation of the CPerson class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "Person.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CPerson::~CPerson()//人员信息类的析构函数
{

}

void CPerson::SetName(string n)//设置人员年龄信息
{
	name = n;
}

void CPerson::SetAge(int a)//设置人员年龄信息
{
	age = a;
}

void CPerson::SetSex(string s)//设置人员性别信息
{
	sex = s;
}

string CPerson::GetName()//获得人员姓名信息
{
	return name;
}

int CPerson::GetAge()//获得人员年龄信息
{
	return age;
}

string CPerson::GetSex()//获得人员性别信息
{
	return sex;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?