【C++】日期类的实现

简介: 【C++】日期类的实现

猴子:嘿嘿嘿,上电视了,好开心

猫:媒体面前你注意一下形象,稳重点9a84c3ebc5ee4d82a32dd402cdd8f20e.jpeg


一、获取某年某月的天数


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.==、!=、>、>=、<、<=

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,他们完全支持输出编译器的内置类型,而所有的自定义类型实际上都是内置类型堆砌而成,我们只需要在重载中将对象的内置类型一个个的输出即可,这就是对象的流插入和流提取的本质思想。

1ed85750c076437583e62b0b9ca7b3cf.png

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
























































































相关文章
|
11天前
|
C++ 芯片
【C++面向对象——类与对象】Computer类(头歌实践教学平台习题)【合集】
声明一个简单的Computer类,含有数据成员芯片(cpu)、内存(ram)、光驱(cdrom)等等,以及两个公有成员函数run、stop。只能在类的内部访问。这是一种数据隐藏的机制,用于保护类的数据不被外部随意修改。根据提示,在右侧编辑器补充代码,平台会对你编写的代码进行测试。成员可以在派生类(继承该类的子类)中访问。成员,在类的外部不能直接访问。可以在类的外部直接访问。为了完成本关任务,你需要掌握。
51 18
|
11天前
|
存储 编译器 数据安全/隐私保护
【C++面向对象——类与对象】CPU类(头歌实践教学平台习题)【合集】
声明一个CPU类,包含等级(rank)、频率(frequency)、电压(voltage)等属性,以及两个公有成员函数run、stop。根据提示,在右侧编辑器补充代码,平台会对你编写的代码进行测试。​ 相关知识 类的声明和使用。 类的声明和对象的声明。 构造函数和析构函数的执行。 一、类的声明和使用 1.类的声明基础 在C++中,类是创建对象的蓝图。类的声明定义了类的成员,包括数据成员(变量)和成员函数(方法)。一个简单的类声明示例如下: classMyClass{ public: int
37 13
|
11天前
|
编译器 数据安全/隐私保护 C++
【C++面向对象——继承与派生】派生类的应用(头歌实践教学平台习题)【合集】
本实验旨在学习类的继承关系、不同继承方式下的访问控制及利用虚基类解决二义性问题。主要内容包括: 1. **类的继承关系基础概念**:介绍继承的定义及声明派生类的语法。 2. **不同继承方式下对基类成员的访问控制**:详细说明`public`、`private`和`protected`继承方式对基类成员的访问权限影响。 3. **利用虚基类解决二义性问题**:解释多继承中可能出现的二义性及其解决方案——虚基类。 实验任务要求从`people`类派生出`student`、`teacher`、`graduate`和`TA`类,添加特定属性并测试这些类的功能。最终通过创建教师和助教实例,验证代码
37 5
|
11天前
|
存储 算法 搜索推荐
【C++面向对象——群体类和群体数据的组织】实现含排序功能的数组类(头歌实践教学平台习题)【合集】
1. **相关排序和查找算法的原理**:介绍直接插入排序、直接选择排序、冒泡排序和顺序查找的基本原理及其实现代码。 2. **C++ 类与成员函数的定义**:讲解如何定义`Array`类,包括类的声明和实现,以及成员函数的定义与调用。 3. **数组作为类的成员变量的处理**:探讨内存管理和正确访问数组元素的方法,确保在类中正确使用动态分配的数组。 4. **函数参数传递与返回值处理**:解释排序和查找函数的参数传递方式及返回值处理,确保函数功能正确实现。 通过掌握这些知识,可以顺利地将排序和查找算法封装到`Array`类中,并进行测试验证。编程要求是在右侧编辑器补充代码以实现三种排序算法
27 5
|
11天前
|
Serverless 编译器 C++
【C++面向对象——类的多态性与虚函数】计算图像面积(头歌实践教学平台习题)【合集】
本任务要求设计一个矩形类、圆形类和图形基类,计算并输出相应图形面积。相关知识点包括纯虚函数和抽象类的使用。 **目录:** - 任务描述 - 相关知识 - 纯虚函数 - 特点 - 使用场景 - 作用 - 注意事项 - 相关概念对比 - 抽象类的使用 - 定义与概念 - 使用场景 - 编程要求 - 测试说明 - 通关代码 - 测试结果 **任务概述:** 1. **图形基类(Shape)**:包含纯虚函数 `void PrintArea()`。 2. **矩形类(Rectangle)**:继承 Shape 类,重写 `Print
32 4
|
11天前
|
设计模式 IDE 编译器
【C++面向对象——类的多态性与虚函数】编写教学游戏:认识动物(头歌实践教学平台习题)【合集】
本项目旨在通过C++编程实现一个教学游戏,帮助小朋友认识动物。程序设计了一个动物园场景,包含Dog、Bird和Frog三种动物。每个动物都有move和shout行为,用于展示其特征。游戏随机挑选10个动物,前5个供学习,后5个用于测试。使用虚函数和多态实现不同动物的行为,确保代码灵活扩展。此外,通过typeid获取对象类型,并利用strstr辅助判断类型。相关头文件如&lt;string&gt;、&lt;cstdlib&gt;等确保程序正常运行。最终,根据小朋友的回答计算得分,提供互动学习体验。 - **任务描述**:编写教学游戏,随机挑选10个动物进行展示与测试。 - **类设计**:基类
26 3
|
2月前
|
存储 编译器 C语言
【c++丨STL】string类的使用
本文介绍了C++中`string`类的基本概念及其主要接口。`string`类在C++标准库中扮演着重要角色,它提供了比C语言中字符串处理函数更丰富、安全和便捷的功能。文章详细讲解了`string`类的构造函数、赋值运算符、容量管理接口、元素访问及遍历方法、字符串修改操作、字符串运算接口、常量成员和非成员函数等内容。通过实例演示了如何使用这些接口进行字符串的创建、修改、查找和比较等操作,帮助读者更好地理解和掌握`string`类的应用。
77 2
|
2月前
|
存储 编译器 C++
【c++】类和对象(下)(取地址运算符重载、深究构造函数、类型转换、static修饰成员、友元、内部类、匿名对象)
本文介绍了C++中类和对象的高级特性,包括取地址运算符重载、构造函数的初始化列表、类型转换、static修饰成员、友元、内部类及匿名对象等内容。文章详细解释了每个概念的使用方法和注意事项,帮助读者深入了解C++面向对象编程的核心机制。
128 5
|
2月前
|
存储 编译器 C++
【c++】类和对象(中)(构造函数、析构函数、拷贝构造、赋值重载)
本文深入探讨了C++类的默认成员函数,包括构造函数、析构函数、拷贝构造函数和赋值重载。构造函数用于对象的初始化,析构函数用于对象销毁时的资源清理,拷贝构造函数用于对象的拷贝,赋值重载用于已存在对象的赋值。文章详细介绍了每个函数的特点、使用方法及注意事项,并提供了代码示例。这些默认成员函数确保了资源的正确管理和对象状态的维护。
138 4
|
2月前
|
存储 编译器 Linux
【c++】类和对象(上)(类的定义格式、访问限定符、类域、类的实例化、对象的内存大小、this指针)
本文介绍了C++中的类和对象,包括类的概念、定义格式、访问限定符、类域、对象的创建及内存大小、以及this指针。通过示例代码详细解释了类的定义、成员函数和成员变量的作用,以及如何使用访问限定符控制成员的访问权限。此外,还讨论了对象的内存分配规则和this指针的使用场景,帮助读者深入理解面向对象编程的核心概念。
195 4