类和对象(5):Date类详解

cpp 复制代码
// Date.h
#include <iostream>
using namespace std;
#include <assert.h>


class Date
{
public:
	Date(int year = 1, int month = 1, int day = 1)
	{
		assert(month >= 1 && month <= 12);
		_year = year;
		_month = month;
		_day = day;
	}

	void Print()
    {
        cout << _year << " " << _month << " " << _day << endl;
    }
	int GetMonthDay(int year, int month);

	bool operator==(const Date& d);
	bool operator>(const Date& d);

	Date& operator+=(int x);
	Date operator+(int x);
	Date& operator-=(int x);
	Date operator-(int x);
	
	Date& operator++();
	Date operator++(int);

    int operator-(const Date& d);

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

1. operator==、operator>

cpp 复制代码
bool Date::operator==(const Date& d)
{
	return _year == d._year
		&& _month == d._month
		&& _day == d._day;
}

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;
}

!=>=< 等运算符,皆可都通过对==>进行逻辑 运算复用实现。

2. operator+= (/+)、operator-= (/-)

cpp 复制代码
int Date::GetMonthDay(int year, int month)
{
	assert(month >= 1 && month <= 12);
	int Day[13] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
    // 判断闰二月
	if (month == 2 && (year % 400 == 0 || (year % 4 == 0 && year % 100 != 0)))
	{
		return 29;
	}
	return Day[month];
}

Date& Date::operator+=(int x)
{
	if (x < 0)
	{
		return *this -= (-x);
	}

	_day += x;
	while (_day > GetMonthDay(_year, _month))
	{
		_day -= GetMonthDay(_year, _month);
		_month++;
		if (_month == 13)
		{
			_year++;
			_month = 1;
		}
	}
	return *this;
}

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

Date& Date::operator-=(int x)
{
	if (x < 0)
	{
		return *this += (-x);
	}
	_day -= x;
	while (_day <= 0)
	{
		_month--;
		if (_month == 0)
		{
			_month = 12;
			_year--;
		}
		_day += GetMonthDay(_year, _month);
	}

	return *this;
}

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

此处有一种重点,以**+=--->+** 和 **+--->+=**进行对比举例。(暂不考虑 x < 0 的情况)

cpp 复制代码
Date Date::operator+(int x)
{
    Date tmp(*this);
    
    tmp._day += x;
	while (tmp._day > GetMonthDay(tmp._year, tmp._month))
	{
		tmp._day -= GetMonthDay(tmp._year, tmp._month);
		tmp._month++;
		if (tmp._month == 13)
		{
			tmp._year++;
			tmp._month = 1;
		}
	}
	return tmp;
}

Date& Date::operator+=(int x)
{
    *this = *this + x;
    return *this;
}

+=--->+

cpp 复制代码
// += 0次对象拷贝
// + 2次对象拷贝

+--->+=

cpp 复制代码
// + 2次对象拷贝
// += 3次对象拷贝

使用前者的复用方法,效率更高。

3. operator++()、operator++(int)

cpp 复制代码
Date& Date::operator++()// 后置++
{
	*this += 1;
	return *this;
}

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

4. int operator-(const Date& d)

cpp 复制代码
int Date::operator-(const Date& d)
{
	int flag = 1;// 假设左大右小
	Date max(*this);
	Date min(d);

	// 左小右大进行调整
	if (max < min)
	{
		max = d;
		min = *this;
		flag = -1;
	}

	int n = 0;
	while (min != max)
	{
		min++;
		n++;
	}
	return n * flag;
}
相关推荐
jieyucx7 小时前
Go语言深度解剖:Map扩容机制全解析(增量扩容+等量扩容+渐进式迁移)
开发语言·后端·golang·map·扩容策略
顾温7 小时前
default——C#/C++
java·c++·c#
凉茶钱8 小时前
【c语言】动态内存管理:malloc,calloc,realloc,柔性数组
c语言·c++·vscode·柔性数组
脏脏a8 小时前
【C++模版】泛型编程:代码复用的终极利器
开发语言·c++·c++模版
island13148 小时前
【C++仿Muduo库#3】Server 服务器模块实现上
服务器·开发语言·c++
散峰而望8 小时前
【算法竞赛】C/C++ 的输入输出你真的玩会了吗?
c语言·开发语言·数据结构·c++·算法·github
小龙报8 小时前
【C语言】内存里的 “数字变形记”:整数三码、大小端与浮点数存储真相
c语言·开发语言·c++·创业创新·学习方法·visual studio
深耕AI8 小时前
【VS Code避坑指南】点击Python图标提示“没有Python环境”,选择安装uv后这堆输出到底是什么意思?
开发语言·python·uv
刃神太酷啦8 小时前
扒透 STL 底层!map/set 如何封装红黑树?迭代器逻辑 + 键值限制全手撕----《Hello C++ Wrold!》(23)--(C/C++)
java·c语言·javascript·数据结构·c++·算法·leetcode
2301_789015628 小时前
C++:继承
c语言·开发语言·c++