📄 birthday.cpp
字号:
// Birthday.cpp: implementation of the Birthday class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Birthday.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
Birthday::Birthday(){}
Birthday::Birthday(int year,int month,int day)
{
this->year = year;
this->month = month;
this->day = day;
}
Birthday::~Birthday()
{
}
// 设置出生日期
void Birthday::setBirth(int setyear,int setmonth,int setday)
{
year=setyear;
month=setmonth;
day=setday;
}
// 显示出生日期
void Birthday::displayBirth(int setyear,int setmonth,int setday) const
{
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -