【C++初阶】日期类的实现

这篇博客介绍了如何在C++中实现一个日期类,包括全缺省构造函数、获取某年某月天数的函数、赋值运算符重载(如日期加减天数、前置和后置增量/减量运算符)、日期相减得到天数差以及比较运算符重载。通过这些功能,可以方便地进行日期的增减和比较操作。
摘要由CSDN通过智能技术生成

目录

 1.获取某年某月的天数

2.全缺省构造函数

3.赋值运算符重载

日期+=天数

日期+天数

日期-天数

日期-=天数

前置++

后置++

前置--

后置--

日期-日期

4.运算符重载

日期类的实现:Gitee


 1.获取某年某月的天数

//获取某年某月的天数
	int GetMonthDay(int year,int month)
	{
		assert(month > 0 && month < 13);
		static int monthDays[13] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
		//闰年的2月是29天
		if (month == 2 && (year % 4 == 0 && year % 100 != 0) || year % 400 == 0)
		{
			return 29;
		}
		return monthDays[month];
	}

2.全缺省构造函数

//全缺省的构造函数
	Date(int year = 0, int month = 1, int day = 1)
	{
		_year = year;
		_month = month;
		_day = day;
		//判断日期是否合法
		if (_year < 0
			|| _month <=0 || _month >= 13
			|| _day <= 0 || _day > GetMonthDay(_year,_month))
		{
			cout << _year << "/" << _month << "/" << _day << "->"<<"非法日期"<<endl;
		}
	}

3.赋值运算符重载

日期+=天数

//日期+=天数
Date& Date::operator+=(int day)
{
	if (day < 0)
	{
		return *this -= -day;
	}
	_day += day;
	//日期不合法,进位
	while (_day > GetMonthDay(_year, _month))
	{
		_day -= GetMonthDay(_year, _month);
		_month++;
		if (_month == 13)
		{
			_year++;
			_month = 1;
		}
	}
	return *this;//出了作用域,d1还在

	//赋用+
	/**this = *this + day;
	return *this;*/
}

日期+天数

//日期+天数
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 == 13)
		{
			tmp._year++;
			tmp._month = 1;
		}
	}
	return tmp;*/

	//赋用+=
	Date ret = *this;
	ret += day;
	return ret;
}

日期-天数

//日期-天数
Date Date::operator-(int day)
{
	Date ret = *this;
	ret -= day;
	return ret;
}

日期-=天数

//日期-=天数
Date& Date::operator-=(int day)
{
	if (day < 0)
	{
		return *this += -day;
	}
	_day -= day;
	while (_day <= 0)
	{
		_month--;
		if (_month == 0)
		{
			_year--;
			_month = 12;
		}
		_day += GetMonthDay(_year, _month);
	}
	return *this;
}

前置++

//前置++
Date& Date::operator++()
{
	//_day += 1;
	日期不合法,进位
	//if (_day > GetMonthDay(_year, _month))
	//{
	//	_day -= GetMonthDay(_year, _month);
	//	_month++;
	//	if (_month == 13)
	//	{
	//		_year++;
	//		_month = 1;
	//	}
	//}
	//赋用
	*this += 1;
	return *this;
}

后置++

按正常的运算符重载规则,无法区分前置++和后置++重载
为了区分,这里做一个特殊处理,给后置++增加一个int参数,这样他们两个就构成函数重载

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

前置--

//前置--
Date& Date::operator--()
{
	//赋用
	*this -= 1;
	return *this;
}

后置--

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

日期-日期

//日期-日期   
int Date::operator-(const Date& d)
{
	Date max = *this, min = d;
	int flag = 1;
	if (*this < d)
	{
		max = d;
		min = *this;
		flag = -1;
	}
	int n = 0;
	while (min != max)
	{
		min++;
		n++;
	}
	return n*flag;
}

4.运算符重载

//>运算符重载
	bool operator > (const Date& d)
	{
		if (_year > d._year)
		{
			return true;
		}
		else if (_year == d._year && _month > d._month)
		{
			return true;
		}
		else if (_year == d._year && _month == d._month && _day > d._day)
		{
			return true;
		}
		else
		{
			return false;
		}
	}
	//==运算符重载
	bool operator==(const Date& d)
	{
		return _year == d._year
			&& _month == d._month
			&& _day == d._day;
	}
	//>=运算符重载
	bool operator >= (const Date& d)
	{
		return *this > d || *this == d;
	}
	//<运算符重载
	bool operator < (const Date& d)
	{
		return !(*this >= d);
	}
	//<=运算符重载
	bool operator <= (const Date& d)
	{
		return !(*this > d);
	}
	//!=运算符重载
	bool operator != (const Date& d)
	{
		return !(*this == d);
	}

日期类的实现:Gitee

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值