C++学习 Day9

用类实现一个日期类:

以下为Date.h

class Date
{

public:
	// 获取某年某月的天数
	int GetMonthDay(int year, int month);
	// 全缺省的构造函数
	Date(int year = 1900, int month = 1, int day = 1);
	// 拷贝构造函数
  // d2(d1)
	Date(const Date& d);
	// 赋值运算符重载
  // d2 = d3 -> d2.operator=(&d2, d3)
	Date& operator=(const Date& d);
	// 析构函数
	~Date();
	// 日期+=天数
	Date& operator+=(const int day);
	// 日期+天数
	Date operator+(int day);
	// 日期-天数
	Date operator-(int day);
	// 日期-=天数
	Date& operator-=(int day);
	// 前置++
	Date& operator++();
	// 后置++
	Date operator++(int);
	// 后置--
	Date operator--(int);
	// 前置--
	Date& operator--();
	// >运算符重载
	bool operator>(const Date& d);
	// ==运算符重载
	bool operator==(const Date& d);
	// >=运算符重载
	bool operator>=(const Date& d);
	// <运算符重载
	bool operator<(const Date& d);
	// <=运算符重载
	bool operator<=(const Date& d);
	// !=运算符重载
	bool operator!=(const Date& d);
	// 日期-日期 返回天数
	int operator-(const Date& d);

private:
	int _year;
	int _month;
	int _day;
};

以下为Date.cpp

#include "date.h"

int Date::GetMonthDay(int year, int month)
{
	int monthDay[13] = { 0, 31 , 28 , 31, 30, 31, 30, 31, 31 ,30 ,31, 30, 31 };

	if (month == 2 
		&& (year % 400 == 0
			|| (year % 100 != 0 && year % 4 == 0)))
	{
		return 29;
	}
	else
	{
		return monthDay[month];
	}

}

// 全缺省的构造函数
Date::Date(int year, int month, int day)
{
	_year = year;
	_month = month;
	_day = day;
}

	// 拷贝构造函数
  // d2(d1)
Date::Date(const Date& d)
{
	_day = d._day;
	_month = d._month;
	_year = d._year;
}

// 赋值运算符重载
  // d2 = d3 -> d2.operator=(&d2, d3)
Date& Date::operator=(const Date& d)
{
	_day = d._day;
	_month = d._month;
	_year = d._year;
	return *this;
}

Date::~Date()
{
	_day = 0;
	_year = 0;
	_month = 0;
}


// 日期+=天数
Date& Date::operator+=(const int day)
{
	_day += day;
	int thisMonthDay = GetMonthDay(_year, _month);

	while (_day > thisMonthDay)
	{
		_day -= thisMonthDay;
		_month++;

		if (_month > 12)
		{
			_month = 1;
			_year++;
		}

		thisMonthDay = GetMonthDay(_year, _month);
	}

	return *this;
}

// 日期+天数
Date Date::operator+(const int day)
{
	Date tmp = *this;
	tmp += day;
	return tmp;
}

// 日期-=天数
Date& Date::operator-=(const int day)
{
	_day -= day;
	int beforeMonthDay = 0;

	if (_month == 1)
	{
		beforeMonthDay = GetMonthDay(_year, 12);
	}
	else
	{
		beforeMonthDay = GetMonthDay(_year, _month - 1);
	}

	while (_day <= 0)
	{
		_day += beforeMonthDay;
		_month--;

		if (_month == 0)
		{
			_month = 12;
			_year -= 1;
		}

		if (_month == 1)
		{
			beforeMonthDay = GetMonthDay(_year, 12);
		}
		else
		{
			beforeMonthDay = GetMonthDay(_year, _month - 1);
		}

	}

	return *this;
}

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

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

// 后置++
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;
}

// >运算符重载
bool Date::operator>(const Date& d)
{
	return (_year > d._year)
		|| (_year == d._year && _month > d._month)
		|| (_year == d._year && _month == d._month && _day > d._day);
}

// ==运算符重载
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 || *this > d;
}

// <运算符重载
bool Date::operator<(const Date& d)
{
	return !(*this >= d);
}

// <=运算符重载
bool Date::operator<=(const Date& d)
{
	return !(*this > d);
}

// !=运算符重载
bool Date::operator!=(const Date& d)
{
	return !(*this == d);
}

// 日期-日期 返回天数
int Date::operator-(const Date& d)
{
	Date tmp(*this);

	while (tmp._year > d._year)
	{
		
		if (tmp._month == 1)
		{

			for (int i = 1; i <= 12; i++)
			{
				tmp._day += GetMonthDay(tmp._year, i);
			}

		}
			
		while (tmp._month > 1)
		{
			tmp._day += GetMonthDay(tmp._year, tmp._month - 1);
			tmp._month--;
		}

		tmp._year--;
	}

	for (int i = 12; i >= d._month; i--)
	{
		tmp._day += GetMonthDay(d._year, i);
	}

	return tmp._day - d._day;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

听说有人ID没取完就

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值