当前位置:   article > 正文

C++—日期类的实现+运算符重载_6-1 日期类输出运算符重载

6-1 日期类输出运算符重载

Date.h

#pragma once
#include<iostream>
using namespace std;

class Date
{
public:

	//获取某年某月的天数
	int GetMonthDay(int year, int month)
	{
		static int MonthDay[13] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };     //建立12个月天数的数组

		//判断是否是闰年的二月份
		if (month == 2&& ((year % 4 == 0) && (year % 100 != 0) || (year % 400 == 0)))
		{
			return 29;
		}
		else
		{
			return MonthDay[month];
		}
	}

	//全缺省构造函数
	Date(int year=1997,int month=10,int day=20)
	{
		_year = year;
		_month = month;
		_day = day;

		//检查输入的日期是否合法
		if (!(year >= 1 && year <= 12) && (month >= 1 && month <= 12) 
			&& (day >= 1 && day <= GetMonthDay(year, month)))
		{
			cout << "非法日期" << endl;
		}
	}


	析构函数
	//~Date();

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

	//赋值运算符重载
	Date& operator=(const Date& d)
	{
		if (*this != d)
		{
			_year = d._year;
			_month = d._month;
			_day = d._day;
		}
		return *this;
	}

	void Print()
	{
		cout << _year << "-" << _month << "-" << _day << endl;
	}
	//==运算符重载
	bool operator==(const Date& d) const;

	//>运算符重载
	bool operator>(const Date& d) const;

	//>=运算符重载
	bool operator>=(const Date& d) const;

	//<运算符重载
	bool operator<(const Date& d) const;

	//<=运算符重载
	bool operator<=(const Date& d) const;

	//!运算符重载
	bool operator!=(const Date& d) const;

	//日期+=天数
	Date& operator+=(int day);

	//日期+天数
	Date operator+(int day) const;

	//日期-=天数
	Date& operator-=(int day);

	//日期-天数
	Date operator-(int day) const;

	//前置
	Date& operator++();

	//后置
	Date operator++(int);

	//前置
	Date& operator--();

	//后置
	Date operator--(int);

	//日期-日期
	int operator-(const Date& d) const;


private:
	int _year;
	int _month;
	int _day;
};
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118

Date.cpp

#include "Date.h"

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

bool Date::operator>(const Date& d) const
{
	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;
	}

	return false;
}

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

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

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

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

//日期+=天数
Date& Date::operator+=(int day) 
{
	if (day < 0)
	{
		return *this -= abs(day);
	}

	_day += day;
	while(_day > GetMonthDay(_year, _month))
	{
		_day -= GetMonthDay(_year, _month);
		++_month;
	}
	if (_month == 13)
	{
		++_year;
		_month = 1;
	}
}

//日期+天数
Date Date::operator+(int day) const
{
	Date ret(*this);     //拷贝构造
	ret+= day;
	return ret;
}

//日期-=天数
Date& Date::operator-=(int day)
{
	if (day < 0)
	{
		return *this += abs(day);
	}

	day -= _day;
	while (day <= 0)
	{
		--_month;
		if (_month == 0)
		{
			--_year;
			_month = 0;
		}
		
		_day += GetMonthDay(_year, _month);
	}
}

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

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

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

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

//日期-日期
int Date::operator-(const Date& d) const
{
	Date max = *this;
	Date min = d;
	
	int flag = 1;

	if (*this < d)
	{
		max = d;
		min = *this;

		flag = -1;
	}

	int n = 0;
	while (max == min)
	{
		min++;
		++n;
	}

	return n * flag;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162

main.cpp

#include "Date.h"

int main()
{
	Date d1;
	Date d2(d1);

	d2.Print();

	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/838158
推荐阅读
相关标签
  

闽ICP备14008679号