📄 person.cpp
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -