C++经典日期类实现

学完C++类和对象以及四个默认成员函数,就可以来尝试自己实现一下日期类。完成日期类的各种功能,并加强自己的代码能力。

日期类实现

定义一个日期类

cpp 复制代码
// 文件:Date.h
#pragma once
#include <iostream>
using std::cout;
using std::endl;

//定义日期类
class Date
{
public:
	//直接写到类里面的函数默认inline修饰
	//所以短小的代码最好可以直接在类里面定义

	//构造函数
	Date(int year, int month, int day)
	{
		_year = year;
		_month = month;
		_day = day;
	}
	//缺省构造
	Date()
	{}
	//析构函数、拷贝构造、赋值运算符重载编译器自己实现

	//打印日期类
	void Print() 
	{
		cout << "Date:" << _year << " " << _month << " " << _day << endl;
	}

private:
	//缺省赋值
	int _year = 0;
	int _month = 0;
	int _day = 0;
};

定义日期类的成员函数(方法)

cpp 复制代码
// 文件:Date.h
class Date
{
public:
    //...

	//逻辑运算符重载
	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);

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

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

	//日期++
	// 为了区分前置++和后置++
	// 后置++运算符重载函数中加入int类型占位
	Date& operator++();		//前置++
	Date& operator++(int);		//后置++
    //...
}

实现日期类的功能

cpp 复制代码
// 文件:Date.cpp
#include "Date.h"
//小于
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;
	}
	return false;
}
//等于
bool Date::operator==(const Date& d)
{
	if (_year == d._year && _month == d._month && _day == d._day)
		return true;
	return false;
}
//不等于
bool Date::operator!=(const Date& d)
{
	return !(*this == d);
}
//小于等于
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);
}

int GetMonthDays(int year, int month)
{
	int common[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;
	}
	else
	{
		return common[month];
	}
}

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

	//Date tmp = *this;
	//tmp._day += day;
	//while (_day > GetMonthDays(tmp._year, tmp._month))
	//{
	//	day -= GetMonthDays(tmp._year, tmp._month);
	//	tmp._month++;
	//	if (tmp._month == 13)
	//	{
	//		tmp._month = 1;
	//		tmp._year++;
	//	}
	//}
	//return tmp;
}

Date& Date::operator+=(int day)
{
	_day += day;
	while (_day > GetMonthDays(_year, _month))
	{
		_day -= GetMonthDays(_year, _month);
		_month++;
		if (_month == 13)
		{
			_month = 1;
			_year++;
		}
	}
	return *this;
}

Date& Date::operator-=(int day)
{
	_day -= day;
	while (_day < 0)
	{
		_day += GetMonthDays(_year, _month - 1);
		_month--;
		if (_month == 0)
		{
			_year--;
			_month = 1;
		}
	}
	if (_day == 0)
	{
		_month--;
		_day = GetMonthDays(_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)
{
	Date tmp = *this;
	*this += 1;
	return tmp;
}

测试验证

cpp 复制代码
// 文件:test.cpp
#define _CRT_SECURE_NO_WARNINGS 1
#include <stdio.h>
#include "Date.h"

int main()
{
	Date D1(2024, 3, 3);
	D1.Print();
	D1 -= 5;
	D1.Print();
	Date D2 = D1;
	D2.Print();
	D2++;
	D2.Print();
	return 0;
}
相关推荐
Ajiang28247353041 小时前
对于C++中stack和queue的认识以及priority_queue的模拟实现
开发语言·c++
幽兰的天空1 小时前
Python 中的模式匹配:深入了解 match 语句
开发语言·python
Theodore_10224 小时前
4 设计模式原则之接口隔离原则
java·开发语言·设计模式·java-ee·接口隔离原则·javaee
‘’林花谢了春红‘’6 小时前
C++ list (链表)容器
c++·链表·list
----云烟----6 小时前
QT中QString类的各种使用
开发语言·qt
lsx2024066 小时前
SQL SELECT 语句:基础与进阶应用
开发语言
开心工作室_kaic7 小时前
ssm161基于web的资源共享平台的共享与开发+jsp(论文+源码)_kaic
java·开发语言·前端
向宇it7 小时前
【unity小技巧】unity 什么是反射?反射的作用?反射的使用场景?反射的缺点?常用的反射操作?反射常见示例
开发语言·游戏·unity·c#·游戏引擎
武子康7 小时前
Java-06 深入浅出 MyBatis - 一对一模型 SqlMapConfig 与 Mapper 详细讲解测试
java·开发语言·数据仓库·sql·mybatis·springboot·springcloud
转世成为计算机大神7 小时前
易考八股文之Java中的设计模式?
java·开发语言·设计模式