【C++】日期类的实现

news/2024/11/25 16:34:35/

猴子:嘿嘿嘿,上电视了,好开心
猫:媒体面前你注意一下形象,稳重点

在这里插入图片描述

文章目录

  • 一、获取某年某月的天数
  • 二、Date的默认成员函数(全缺省的默认构造)
  • 三、运算符重载
    • 1.+ =、+、- =、-
    • 2.==、!=、>、>=、<、<=
    • 3.前置++、--、后置++、--
    • 4.<<流插入、>>流提取(内联的<<、>>重载函数)
  • 四、两个日期相减,返回天数
  • 五、日期类完整代码
    • 1.Date.h
    • 2.Date.cpp
    • 3.Test.cpp



一、获取某年某月的天数

1.
在实现日期类的过程中,日期加减天数的应用场景一定会频繁使用到这个函数接口,因为加减天数会使得月份发生变化,可能增月或减月,这个时候就需要在day上面扣除或增加当年当月的天数,所以这个接口非常的重要。

2.
为了方便获取到某年某月的天数,我们将数组大小设置为13,以便月份能够和数组中的下标对应上,并且我们将数组设置为静态,就不需要考虑每次调用函数建立栈帧后重新给数组分配空间的事情了,因为数组一直被存放在静态区。

3.
四年一闰,百年不闰,四百年一闰,闰年或平年会影响2月份的天数,所以我们要将这种情况单拉出来进行处理分析。

int GetMonthDay(int year, int month){static int monthDayArray[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 monthDayArray[month];}}

二、Date的默认成员函数(全缺省的默认构造)

1.
编译器默认生成的构造函数不会处理内置类型,所以我们需要自己去写构造函数,非常推荐大家使用全缺省的构造函数,编译器对自定义类型会自动调用该类类型的默认构造。

2.
由于Date类的成员变量都是内置类型,所以析构函数不需要我们自己写,因为没有资源的申请。并且拷贝构造和赋值重载也不需要写,因为Date类不涉及深拷贝的问题,仅仅使用浅拷贝就够了。

3.
至于取地址重载和const对象取地址重载,本身就不需要我们写。
除非你不想让别人通过取地址符号&来拿到实例化对象的地址,那可以返回nullptr,来屏蔽别人通过&拿到对象地址,但极大概率没人这么做。

Date(int year = 1, int month = 1, int day = 1){_year = year;_month = month;_day = day;// 检查日期是否合法if (!(year >= 1&& (month >= 1 && month <= 12)&& (day >= 1 && day <= GetMonthDay(year, month)))){cout << "非法日期" << endl;}}

三、运算符重载

1.+ =、+、- =、-

1.
实现+ =或 - =之后,就不需要实现+ -的重载了,我们可以调用之前实现过的成员函数,需要注意的是形参day有可能是负数,对于这种情况可以将其交给+=或-=对方来处理这种情况,因为这两个运算符正好是反过来的,可以处理对方day为负数的时候的情况。

2.
+=实现的思路就是,实现一个循环,直到天数回到该月的正常天数为止,在循环内部要做的就是进月和进年,让天数不断减去本月天数,直到恢复本月正常天数时,循环结束,返回对象本身即可。

3.
-=实现的思路就是,实现一个循环,直到天数变为正数为止,在循环内部要做的就是借月和借年,让天数不断加上上一个月份的天数,直到恢复正数为止,循环结束,返回对象本身。

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){_month = 1;++_year;}}return *this;
}
Date Date::operator+(int day)
{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){_month = 12;--_year;}_day += GetMonthDay(_year, _month);}return *this;
}
Date Date::operator-(int day)
{Date ret(*this);ret -= day;return ret;
}

2.==、!=、>、>=、<、<=

1.
下面这些比较运算符的重载应该是非常简单的了,只需要实现一半的运算符重载即可,剩余运算符利用反逻辑操作符!即可轻松实现。

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

3.前置++、–、后置++、–

1.
实现前置和后置的区别就是,一个返回临时对象,一个返回对象本身,在实现+=和-=以及+ -这些运算符重载之后,自增或自减运算符的重载非常简单了,也是直接套用即可。

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

4.<<流插入、>>流提取(内联的<<、>>重载函数)

1.
流插入和流提取不适用于在类内部实现,因为隐含的this指针会先抢到第一个参数位置,而我们又习惯将cout作为左操作数使用,这就产生了冲突,所以我们需要将重载放到全局位置,并且我们很可能频繁使用这两个重载,所以最好搞成内联函数。

2.
起始流插入和流提取的重载非常简单,本质上就是利用了库中实现的类的实例化对象cin和cout,他们完全支持输出编译器的内置类型,而所有的自定义类型实际上都是内置类型堆砌而成,我们只需要在重载中将对象的内置类型一个个的输出即可,这就是对象的流插入和流提取的本质思想。

在这里插入图片描述

inline ostream& operator<<(ostream& out, const Date& d)
{out << d._year << "年" << d._month << "月" << d._day << "日" << endl;return out;
}
inline istream& operator>>(istream& in,  Date& d)
{in >> d._year >> d._month >> d._day;return in;
}

四、两个日期相减,返回天数

1.
这个模块的实现非常的有意思,利用了一个编程技巧假设,我们不知道哪个对象的日期更大一些,那我们就先假设一下,如果判断错误,只要纠正一下即可。
然后定义一个计数器,让较小日期自增,直到和较大日期相等为止,最后的计数器就是日期之间相差的天数,这个天数既有可能是正,也有可能是负,所以这里利用了flag标志位,返回flag和cnt的乘积。

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 cnt = 0;while (min != max){++min;++cnt;}return cnt * flag;
}

五、日期类完整代码

1.Date.h

#pragma once 
#include <iostream>
using namespace std;class Date
{
public:friend ostream& operator<<(ostream& out, const Date& d);friend istream& operator>>(istream& in,  Date& d);int GetMonthDay(int year, int month){//静态数组,每次调用不用频繁在栈区创建数组static int monthDayArray[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 monthDayArray[month];}}Date(int year = 1, int month = 1, int day = 1){_year = year;_month = month;_day = day;// 检查日期是否合法if (!(year >= 1&& (month >= 1 && month <= 12)&& (day >= 1 && day <= GetMonthDay(year, month)))){cout << "非法日期" << endl;}}//拷贝构造、赋值重载、析构函数都不用自己写void Print()const {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);Date& operator-=(int day);Date operator-(int day);Date& operator++();//前置++Date operator++(int);//后置++Date& operator--();//前置--Date operator--(int);//后置--// d1 - d2;int operator-(const Date& d)const;private:int _year;int _month;int _day;
};inline ostream& operator<<(ostream& out, const Date& d)
{out << d._year << "年" << d._month << "月" << d._day << "日" << endl;return out;
}
inline istream& operator>>(istream& in,  Date& d)
{in >> d._year >> d._month >> d._day;return in;
}

2.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){_month = 1;++_year;}}return *this;
}
Date Date::operator+(int day)
{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){_month = 12;--_year;}_day += GetMonthDay(_year, _month);}return *this;
}
Date Date::operator-(int day)
{Date ret(*this);ret -= day;return ret;
}Date& Date::operator++()
{return *this += 1;
}
Date Date::operator++(int)
{Date ret(*this);*this += 1;return ret;
}Date& Date::operator--()
{return *this -= 1;
}
Date Date::operator--(int)
{Date ret(*this);*this -= 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 cnt = 0;while (min != max){++min;++cnt;}return cnt * flag;
}

3.Test.cpp

#include "Date.h"void TestDate1()
{Date d1(2022, 10, 8);Date d3(d1);Date d4(d1);d1 -= 10000;d1.Print();Date d2(d1);/*Date d3 = d2 - 10000;d3.Print();*/(d2 - 10000).Print();d2.Print();d3 -= -10000;d3.Print();d4 += -10000;d4.Print();
}void TestDate2()
{Date d1(2022, 10, 8);Date d2(d1);Date d3(d1);Date d4(d1);(++d1).Print(); // d1.operator++()d1.Print();(d2++).Print(); // d2.operator++(1)d2.Print();(--d1).Print(); // d1.operator--()d1.Print();(d2--).Print(); // d2.operator--(1)d2.Print();
}void TestDate3()
{Date d1(2022, 10, 10);Date d2(2023, 7, 1);cout << d2 - d1 << endl;cout << d1 - d2 << endl;
}void TestDate4()
{Date d1, d2;cin >> d1 >> d2;cout << d1 << d2 << endl; // operator<<(cout, d1);cout << d1 - d2 << endl;
}int main()
{//TestDate1();TestDate4();return 0;
}

http://www.ppmy.cn/news/22779.html

相关文章

车载以太网 - SomeIP - 报文类型RR和FF - 06

前面几篇文章都是对SomeIP的概念性内容进行了详细的分享,今天开始我们聊的会更贴近工作内容,大部分内容会是更加贴近SomeIP的功能,而不仅仅停留在概念的基础上;本篇文章主要是从SomeIP报文类型来分享常见的SomeIP报文使用。 常见SomeIP报文类型: 常见并且必须支持的SomeIP…

数据结构——Java对象的比较

目录 一、基本类型的比较 二、对象的比较 1、定义 2、方法 &#xff08;1&#xff09;.覆写基类的equals &#xff08;2&#xff09;.基于Comparable接口类的比较 &#xff08;3&#xff09;.基于比较器的比较 3、对比 三、集合框架中的PriorityQueue的比较方式 四、应…

AT155 高压绝缘电阻测试仪 都有哪些功能?

高压绝缘电阻测试仪是—款手持式仪表主要用来测量交流&#xff0f;直流电压、 电阻、 短路蜂鸣测试和 绝缘电阻测量。 式高压绝缘电阻测试仪具有4个量程用千绝缘电阻、 AC/DC电压、 电阻和短路蜂鸣测试。 设计达到以下安全标准 &#xff0e;绝缘测试量程O.lMn to 60Gn。 &a…

【AList】网盘聚合神器,打造灵活的私人云存储

一、AList简介 项目地址&#xff1a;https://github.com/alist-org/alist/blob/main/README_cn.md AList文档&#xff1a;https://alist.nn.ci/zh/guide/ AList是一个支持多种存储&#xff0c;支持网页浏览和 WebDAV 的文件列表程序。或者说是一个网盘聚合器。可以将你的网盘…

《小猫猫大课堂》三轮4——自定义类型(位段,枚举,联合)(内含通讯录)

宝子&#xff0c;你不点个赞吗&#xff1f;不评个论吗&#xff1f;不收个藏吗&#xff1f; 最后的最后&#xff0c;关注我&#xff0c;关注我&#xff0c;关注我&#xff0c;你会看到更多有趣的博客哦&#xff01;&#xff01;&#xff01; 喵喵喵&#xff0c;你对我真的很重…

算法刷题打卡第82天:计算布尔二叉树的值

计算布尔二叉树的值 难度&#xff1a;简单 给你一棵 完整二叉树 的根&#xff0c;这棵树有以下特征&#xff1a; 叶子节点 要么值为 0 要么值为 1 &#xff0c;其中 0 表示 False &#xff0c;1 表示 True 。非叶子节点 要么值为 2 要么值为 3 &#xff0c;其中 2 表示逻辑或…

实现加盐加密

实现加盐加密存储密码1. MD52. 加盐加密实现&#xff1a;1&#xff09;修改 password 为 64 位字符串2&#xff09;创建 SecurityUtil 类 (加盐加密类)应用存储密码 1. MD5 Spring 提供了库 import org.springframework.util.DigestUtils; &#xff0c;我们可以进行 MD5 加密&…

react源码中的生命周期和事件系统

这一章我想跟大家探讨的是React的生命周期与事件系统。 jsx的编译结果 因为前面也讲到jsx在v17中的编译结果&#xff0c;除了标签名&#xff0c;其他的挂在标签上的属性&#xff08;比如class&#xff09;&#xff0c;事件&#xff08;比如click事件&#xff09;&#xff0c;都…