【C++】日期类的实现

1、Date.h

c 复制代码
#pragma once
#include <iostream>
using namespace std;

class Date
{
public:
	Date(int year = 1, int month = 1, int day = 1);

	void Print();

	//Date& operator=(const Date& d); //赋值重载

	int GetMonthDay(int year, int month);


	bool operator<(const Date& d); //d1 就是 this,d2 就是 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);


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


	//++d1 -> d1.operator++()
	Date& operator++();

	//d1++ -> d1.operator++(0)
	//【加一个int参数,进行占位,跟前置++构成函数重载进行区分】
	//【本质:后置++调用,编译器进行特殊处理】
	Date operator++(int i);

	Date& operator--();
	Date operator--(int i);

private:
	//内置类型
	int _year;
	int _month;
	int _day;
};

2、Date.cpp

c 复制代码
#define _CRT_SECURE_NO_WARNINGS 1
#include "Date.h"

Date::Date(int year, int month, int day)
{
	_year = year;
	_month = month;
	_day = day;

	//检查日期是否合法
	if (month < 1 || month>12 || day<1 || day>GetMonthDay(year, month))
	{
		cout << "非法日期:";
		//exit(-1);
	}
}

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

int Date::GetMonthDay(int year, int month)
{
	//GetMonthDay会被重复调用,加一个static就不用每次调用都创建一个数组,节省了空间
	static int monthArray[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))
	{
		return 29;
	}
	return monthArray[month];
}

bool Date::operator<(const Date& d) //d1 就是 this,d2 就是 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;
	}
}

//d1==d1
bool Date::operator==(const Date& d) //d1 就是 this,d2 就是 d
{
	return (_year == d._year && _month == d._month && _day == d._day);
}

//d1<=d2
bool Date::operator<=(const Date& d) //d1 就是 this,d2 就是 d
{
	return *this < d || *this == d; //*this就是d1,d就是d2
}

//d1>d2
bool Date::operator>(const Date& d)
{
	return !(*this <= d); //>就是<=取反
}

//d1>=d2
bool Date::operator>=(const Date& d)
{
	return !(*this < d); //>=就是<取反
}

//d1!=d2
bool Date::operator!=(const Date& d)
{
	return !(*this == d);
}

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; //this是指针,返回*this
}

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

	//tmp._day += day;
	//while (tmp._day > GetMonthDay(tmp._year, tmp._month))
	//{
	//	//月进位
	//	tmp._day -= GetMonthDay(tmp._year, tmp._month);
	//	++_month;

	//	//月满,年进位
	//	if (tmp._month == 13)
	//	{
	//		++tmp._year;
	//		tmp._month = 1;
	//	}
	//}
	//return tmp;
}

//Date& Date::operator=(const Date& d)
//{
//	if (this != &d) //屏蔽d1=d1的操作
//	{
//		this->_year = d._year;
//		this->_month = d._month;
//		this->_day = d._day;
//	}
//	return *this;
//}

Date& Date::operator-=(int day)
{
	//若-=负数,等于+=正数
	if (day < 0)
	{
		return *this += (-day);
	}

	_day -= day;

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

		_day += GetMonthDay(_year, _month);
	}
	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 i)
{
	Date tmp = *this;
	*this += 1;
	return tmp;
}

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

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

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

	if (max < min)
	{
		max = d;
		min = *this;
		flag = -1;
	}

	int n = 0;
	while (min != max) //算相差的天数
	{
		++min;
		++n;
	}

	return n * flag;
}

3、Test.cpp

c 复制代码
#define _CRT_SECURE_NO_WARNINGS 1
#include "Date.h"

void Test1()
{
	Date d1(2023, 7, 23);
	d1.Print();

	Date d2(2023, 8, 23);
	d2.Print();

	Date d3(2023, 13, 0);
	d3.Print();
}

void Test2()
{
	Date d1(2023, 7, 23);
	d1.Print();

	Date d2(2023, 8, 13);
	d2.Print();

	//拷贝构造,一个已经存在的对象去初始化另外一个要创建的对象
	Date d3(d2); //默认拷贝构造
	d3.Print();

	//赋值,两个已经存在的对象进行拷贝
	d1 = d2; //d1.operator=(d2);
	d1.Print();

	d1 = d2 = d3;
	d1.Print();
}

void Test3()
{
	Date d1(2023, 7, 27);
	d1 += 2000;
	d1.Print();

	Date d2(2023, 7, 27);

	Date ret = d2; //拷贝构造,不是赋值 
	/*Date ret;
	ret = d2 + 2000;*/ //这是赋值
	ret.Print();
}

void Test4()
{
	Date d1(2023, 7, 27);
	d1 -= 2000;
	d1.Print();

	d1 -= -200;
	d1.Print();
}

void Test5()
{
	Date d1(2023, 7, 27);
	Date ret1 = d1++;
	//Date ret1 = d1.operator++(0); //显式调用,此处的值传多少都无所谓
	ret1.Print();
	d1.Print();

	Date ret2 = ++d1;
	//Date ret2 = d1.operator++(); //显式调用
	ret2.Print();
	d1.Print();
}

void Test6()
{
	Date d1(2002, 12, 14);
	Date d2(2023, 7, 27);
	cout << d2 - d1 << endl;
}

int main()
{
	cout << "Test1:" << endl;
	Test1();

	cout << endl;

	cout << "Test2:" << endl;
	Test2();

	cout << endl;

	cout << "Test3:" << endl;
	Test3();

	cout << endl;

	cout << "Test4:" << endl;
	Test4();

	cout << endl;

	cout << "Test5:" << endl;
	Test5();

	cout << endl;

	cout << "Test6:" << endl;
	Test6();

	return 0;
}

4、运行结果

相关推荐
王老师青少年编程3 小时前
gesp(C++五级)(14)洛谷:B4071:[GESP202412 五级] 武器强化
开发语言·c++·算法·gesp·csp·信奥赛
DogDaoDao3 小时前
leetcode 面试经典 150 题:有效的括号
c++·算法·leetcode·面试··stack·有效的括号
一只小bit4 小时前
C++之初识模版
开发语言·c++
CodeClimb5 小时前
【华为OD-E卷 - 第k个排列 100分(python、java、c++、js、c)】
java·javascript·c++·python·华为od
apz_end6 小时前
埃氏算法C++实现: 快速输出质数( 素数 )
开发语言·c++·算法·埃氏算法
仟濹6 小时前
【贪心算法】洛谷P1106 - 删数问题
c语言·c++·算法·贪心算法
北顾南栀倾寒6 小时前
[Qt]系统相关-网络编程-TCP、UDP、HTTP协议
开发语言·网络·c++·qt·tcp/ip·http·udp
old_power8 小时前
【PCL】Segmentation 模块—— 基于图割算法的点云分割(Min-Cut Based Segmentation)
c++·算法·计算机视觉·3d
涛ing8 小时前
21. C语言 `typedef`:类型重命名
linux·c语言·开发语言·c++·vscode·算法·visual studio
PaLu-LI9 小时前
ORB-SLAM2源码学习:Initializer.cc⑧: Initializer::CheckRT检验三角化结果
c++·人工智能·opencv·学习·ubuntu·计算机视觉