【C++】日期类的实现_定义日期结构体和学生结构体c+

	_year = year;
	_month = month;
	_day = day;
}
else
{
	cout << "非法日期" << endl;
}

}


注意缺省参数在声明和定义只能出现一处,GetMonthDay函数在后面讲解。




---


### 3.2 打印日期



void Date::Print()
{
cout << _year << “年” << _month << “月” << _day << “日” << endl;
}


### 3.3 获取某年某月的天数



inline int Date::GetMonthDay(int year, int month)
{
// 0对应0
int Day[13] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
int day = Day[month];
// 特殊情况:闰年2月
if (month == 2 && (((year % 4 == 0) && (year % 100 != 0)) || year % 400 == 0))
{
day++;
}
return day;
}


**注意两点:**



> 
> 1)创建数组要创建13个位置,因为要对应“0月”。  
>  2)因为要多次调用,所以设置成内敛函数
> 
> 
> 




---


### 3.4 日期+=天数



Date& Date::operator+=(int day)
{
_day += day;
while (_day > GetMonthDay(_year, _month))
{
_day -= GetMonthDay(_year, _month);
_month++;
if (_month > 12)
{
_year++;
_month = 1;
}
}
return *this;
}


能传引用就传引用,提高效率(减少拷贝)。




---


### 3.5 日期+天数



Date Date::operator+(int day)
{
Date tmp = *this;
tmp._day += day;
while (tmp._day > GetMonthDay(tmp._year, tmp._month))
{
tmp._day -= GetMonthDay(tmp._year, tmp._month);
tmp._month++;
if (tmp._month > 12)
{
tmp._year++;
tmp._month = 1;
}
}
return tmp;
}


+的意思是不能改变原来的值,所以要创建临时变量返回,并且不能用引用返回(出作用域后销毁)。  
 我们发现我们写过+=,所以我们可以采用复用。



Date Date::operator+(int day)
{
Date tmp(*this);//拷贝构造
tmp += day;
return tmp;
}




---


### 3.6 日期-=天数



Date& Date::operator-=(int day)
{
if (day > 0)
{
_day -= day;
while (_day <= 0)
{
_month–;
if (_month <= 0)
{
_month = 12;
_year–;
}
_day += GetMonthDay(_year, _month);
}
}
else
{
*this += -day;
}
return *this;
}


要注意day为负数的情况。上面的+=也同理。




---


### 3.7 日期-天数



Date Date::operator-(int day)
{
Date tmp(*this);
tmp -= day;
return tmp;
}


### 3.8 前置++和后置++


前置++和后置++都完成了++,不同的地方在于返回值不同。  
 由于无法分辨前置和后置,所以函数名修饰规则:后面加int参数为后置,不加为前置。  
 **前置++:**



Date& Date::operator++()
{
*this += 1;
return *this;
}


**后置++:**



Date Date::operator++(int)
{
Date tmp(*this);
*this += 1;
return tmp;
}




---


### 3.9 前置–和后置–


**前置–:**



Date& Date::operator–()
{
*this -= 1;
return *this;
}


**后置–:**



Date Date::operator–(int)
{
Date tmp(*this);
*this -= 1;
return tmp;
}




---


### 3.10 ==



bool Date::operator==(const Date& d)
{
return _day == d._day
&& _month == d._month
&& _year == d._year;
}




---


### 3.11 比较符号



> 
> **>**
> 
> 
> 



bool Date::operator>(const Date& d)
{
if (_year > d._year)
{
return true;
}
else if (_year == d._year)
{
if (_month > d._month)
{
return true;
}
else if (_month == d._month)
{
if (_day > d._day)
{
return true;
}
}
}
return false;
}


有了两个剩下的就可以用复用:



> 
> **>=**
> 
> 
> 



bool Date::operator >= (const Date& d)
{
return *this == d || *this > d;
}



> 
> **<**
> 
> 


![img](https://img-blog.csdnimg.cn/img_convert/963832d81abf19eb47ad795c0ab85675.png)
![img](https://img-blog.csdnimg.cn/img_convert/c58f9c3da43246dc1afad7d666daa024.png)
![img](https://img-blog.csdnimg.cn/img_convert/09e8ce6279980ab978828e613cd2c599.png)

**既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上大数据知识点,真正体系化!**

**由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新**

**[需要这份系统化资料的朋友,可以戳这里获取](https://bbs.csdn.net/topics/618545628)**

 
> **<**
> 
> 


[外链图片转存中...(img-xdrWosVg-1714166311175)]
[外链图片转存中...(img-znFyHw3M-1714166311176)]
[外链图片转存中...(img-2iEEDEPj-1714166311176)]

**既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上大数据知识点,真正体系化!**

**由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新**

**[需要这份系统化资料的朋友,可以戳这里获取](https://bbs.csdn.net/topics/618545628)**

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值