日期类的实现

本文详细介绍了C++中一个日期类的实现,包括构造函数、获取月份天数的方法、各种比较运算符(==,!=,<,<=,>,>=)以及日期加减操作。示例代码展示了如何创建日期对象并进行日期间的比较和加减运算。
摘要由CSDN通过智能技术生成

1. 日期类的具体实现

1.date.h

#pragma once
#include<iostream>
using namespace std;
class date
{
public:
	//函数声明
	int getmonthday(int year, int month);//查询当前月份的天数
	date(int year = 1, int month = 1, int day = 1);//构造
	void print();//输出
	bool operator==(const date& d);//d1==d2
	bool operator!=(const date& d);//d1!=d2
	bool operator<(const date& d);//d1<d2
	bool operator<=(const date& d);//d1<=d2
	bool operator>(const date& d);//d1>d2
	bool operator>=(const date& d);//d1>=d2
	date operator+(int day);//日期+天数
	date& operator+=(int day);//日期+=天数
	date operator-(int day);//日期-天数
	date& operator-=(int day);//日期-=天数
	date& operator++();//++d
	//int 参数仅是为了占位,构成函数重载 区分前置
	date operator++(int);//d++
	date& operator--();   //--d
	date operator--(int);//d--
	int  operator-(date& d);//日期-日期 返回天数
private:
	int _year;
	int _month;
	int _day;
};

2.date.cpp

#include"date.h"
//函数实现
int date::getmonthday(int year, int month)
{
	int arr[13] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };
	if (month == 2 && (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)))
	{
		//是闰年并且是2月份
		return 29;
	}
	return arr[month];
}
date::date(int year, int month, int day)
{
	//判断日期是否合法
	if (month > 0 && month < 13 && (day > 0 && day <= getmonthday(year, month)))
	{
		_year = year;
		_month = month;
		_day = day;
	}
	else
	{
		cout << "日期不合法" << endl;
	}


}
void date::print()
{
	cout << _year << "-" << _month << "-" << _day << endl;
}
bool date::operator==(const date& d)
{
	return (_year == d._year) && (_month == d._month) && (_day == d._day);
}
bool date::operator!=(const date& d)
{
	return !(*this == d);//复用d1==d2的相反逻辑
}
bool date::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 date::operator<=(const date& d)
{
	return (*this < d) || (*this == d);//复用 d1<d2 和d1==d2的情况
}
bool date::operator>(const date& d)
{
	return !(*this < d) && (*this != d);//复用 d1<d2的逻辑反 以及d1!=d2
}
bool date::operator>=(const date& d)
{
	return !(*this < d);//复用d1<d2的逻辑反 
}

date& date::operator+=(int day)
{
	if (day < 0)//+= -等价于 -=
	{
		*this -= -day;//复用-=
		return *this;
	}
	//由于是+=改变本身,所以返回*this
	int getday = _day + day;
	//判断当前加上的天数是否大于当前月份的天数
	while (getday > getmonthday(_year, _month))
	{
		getday -= getmonthday(_year, _month);
		_month++;
		if (_month == 13)
		{
			_year++;
			_month = 1;
		}
	}
	//最后注意剩余的getday就为当前月份的天数
	_day = getday;
	//除了作用域 *this 还在所以可以使用引用返回
	return *this;
}
date date::operator+(int day)
{
	//由于不改变日期本身,所以用一个临时变量代替
		//date ret = *this;
		//int getday = ret._day + day;
		//判断当前加上的天数是否大于当前月份的天数
		//while (getday > getmonthday(ret._year, ret._month))
		//{
		//	getday -= getmonthday(ret._year, ret._month);
		//	ret._month++;
		//	if (ret._month == 13)
		//	{
		//		ret._year++;
		//		ret._month = 1;
		//	}
		//}
		//最后注意剩余的getday就为当前月份的天数
		//ret._day = getday;
		//除了作用域 ret不在了,所以使用传值返回
		//return ret;
		date tmp = *this;
	tmp += day;
	return tmp;//复用 日期+=天数的功能
}


date& date::operator-=(int day)
{
	if (day < 0)
	{
		*this += -day;//复用+=
		return *this;
	}
	_day -= day;
	//当day 小于 当前月份的天数 直接return
	//当 day大于等于 当前月份的天数 进入循环
	while (_day <= 0)
	{
		//返回到上一个月份
		_month--;
		//当月份为1时 --为0
		if (_month == 0)
		{
			_year--;
			_month = 12;
		}
		_day += getmonthday(_year, _month);
	}
	return *this;
}
date date::operator-(int day)
{
	date ret = *this;
	ret -= day;
	return ret;
}
date& date::operator++()//++d
{
	*this += 1;
	return *this;
}
date date::operator++(int)//d++
{
	date ret = *this;
	*this += 1;
	return ret;
}

date& date::operator--()//--d
{
	*this -= 1;//复用-=
	return *this;
}

date date::operator--(int)//d--
{
	date ret = *this;
	*this -= 1;//复用-=
	return ret;
}
int date::operator-(date& d)
{
	date max = *this;
	date min = d;
	if (*this < d)
	{
		max = d;
		min = *this;
	}
	int n = 0;
	while (min != max)
	{
		n++;
		if (min._day < getmonthday(min._year, min._month))
		{
			min._day++;
		}
		else
		{
			min._month++;
			min._day = 1;
		}
		if (min._month == 13)
		{
			min._year++;
			min._month = 1;
		}
	}
	return n;
}

3.dateTest.cpp

#include"date.h"
int main()
{
	date d1(2023, 2, 9);
	date d2(2023, 2, 1);
	cout << (d1 == d2) << endl;
	cout << (d1 < d2) << endl;
	cout << (d1 - d2) << endl;
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值