【C++】实现日期类相关接口(二)

简介: 【C++】实现日期类相关接口

【C++】实现日期类相关接口(一)https://developer.aliyun.com/article/1617310


五、日期减日期

需要使用持续借位原则,如果天数为0,需要得到上月的天数

第一种方式:不断++直到等于大的那个年份,这里需要日期加日期接口的技术支撑

int Date::operator-(const Date& d)
{
  int flag = 1;
  Date max = *this;
  Date min = d;
  if (*this < d)
  {
    int flag = -1;//判断两个天数相差
    max = d;
    min = *this;
  }
  int n = 0;
  while (min != max)
  {
    ++min;//这里会调用operato++()
    ++n;//operator++()
  }
  return n * flag;
}
  • 优点:方便实现
  • 缺点:效率低

第二个方法:通过该变量记录两个年份修饰到1月1日,也就是都修饰到1月1日之间还差多少天,再计算两个年之间有多少个年,如果是平年+365,闰年+366

int Date::operator-(const Date& d) const
{
  //不知道哪个操作数大,先假设
  Date max = *this;
  Date min = d;
  int flag = 1;
  if (*this < d)//假设错了就认错
  {
    Date max = d;
    Date min = *this;
    int flag = -1;//用来标记
  }
  int count =0;
  //大的减到1月1日  count++
  while (!(max._day == 1 && max._month == 1))
  {
    --max;
    ++count;
  }
  //小的减到1月1日  count--
  while (!(min._day == 1 && min._month == 1))
  {
    --min;
    --count;
  }
  //都减到1月1日了  算差多少年
  while (min._year != max._year)
  {
    if (is_leapyear(min._year))
      count += 366;
    else
      count += 365;
    ++min._year;
  }
  return flag * count;
}

六、流插入和流提取运算符重载

out和cin的本质是输入和输出流对象,对于<<和>>用于重载的运算符,从图可以得,cout属于ostream类,cin属于istream类,可以自动识别类型

对于我们可以在日期类中,实现<<和>>重载打印日期和提取日

int main()
{
  Date d1(2024, 3, 10);
    //void operator<<(ostream& out);
    //cout<<d1;
    
  d1 << cout;//->d1.operator<<(cout)->operator<<(const Date *d1,cout);
  return 0;
}
  • 如果使用运算符重载,隐含的this指针占用第一个参数的位置,Date必须是左操作数,d1<是不符合我们的习惯的
  • 对此我们可以在类外实现该运算符重载函数,就可以自己设计参数部分的位置
  • 但是又引出了另一个问题:类外不能访问类中的私有成员,如果将私有权限放开,就缺乏安全性,对此C++中有友元,接下来我们会涉及到,这里就使用下,虽然这个全局函数不在类中,但是可以访问私有成员函数
//友元,告诉该类这两个全局函数是我们的朋友,允许使用私有成员(在类中)
  friend ostream& operator<<(ostream& out, const Date& d);
  friend istream& operator>>(istream& in, Date& d);
ostream& operator<<(ostream& out, const Date& d)
{
  out << d._year << "" << d._month << "" << d._day << "" << endl;
  return out;
}
 
istream& operator>>(istream& in, Date& d)
{
  in >> d._year >> d._month >> d._day;
  return in;
}

如果我们需要连续打印cout<的话,这里就不合适的。因为这里的结合性是从左往右,cout<会返回一个临时变量,那么这里运算符重载函数需要通过引用返回了。C++存在私有的,printf不支持自定义打印,cout本质实现所用类型的打印。

- **用引用做返回值,应对连续流插入和流提取
- 流提取不是不能对Date进行const修饰,需要通过键盘读取数据存储在成员变量

6.1 需要判断输入进去的数据是否有误

七、源代码展示

7.1 Date.h

#pragma once
#include<iostream>
#include<assert.h>
using namespace std;
class Date
{
public:
  Date(int year = 1, int month = 1, int day = 1);
  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);
  // d1 + 100
  Date& operator+=(int day);
  Date operator+(int day);
  // d1 - 100
  Date operator-(int day);
  Date& operator-=(int day);
  // ++d1
  Date& operator++();
  // 特殊处理:解决语法逻辑不自洽,自相矛盾的问题
  // d1++
  // 为了跟前置++区分,强行增加一个int形参,够成重载区分
  Date operator++(int);
  Date operator--(int);
  Date& operator--();
  // d1 - d2
  int operator-(const Date& d);
  // 本质就是inline
  int GetMonthDay(int year, int month)
  {
    assert(month > 0 && month < 13);
    static int monthDays[13] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
    // 365   自转  公转  365 5+h
    // 366
    if (month == 2 && ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)))
    {
      return 29;
    }
    return monthDays[month];
  }
  void Print()
  {
    cout << _year << "/" << _month << "/" << _day << endl;
  }
private:
  int _year;
  int _month;
  int _day;
};


【C++】实现日期类相关接口(三)https://developer.aliyun.com/article/1617312

相关文章
|
6天前
|
存储 编译器 C++
【c++】类和对象(中)(构造函数、析构函数、拷贝构造、赋值重载)
本文深入探讨了C++类的默认成员函数,包括构造函数、析构函数、拷贝构造函数和赋值重载。构造函数用于对象的初始化,析构函数用于对象销毁时的资源清理,拷贝构造函数用于对象的拷贝,赋值重载用于已存在对象的赋值。文章详细介绍了每个函数的特点、使用方法及注意事项,并提供了代码示例。这些默认成员函数确保了资源的正确管理和对象状态的维护。
29 4
|
7天前
|
存储 编译器 Linux
【c++】类和对象(上)(类的定义格式、访问限定符、类域、类的实例化、对象的内存大小、this指针)
本文介绍了C++中的类和对象,包括类的概念、定义格式、访问限定符、类域、对象的创建及内存大小、以及this指针。通过示例代码详细解释了类的定义、成员函数和成员变量的作用,以及如何使用访问限定符控制成员的访问权限。此外,还讨论了对象的内存分配规则和this指针的使用场景,帮助读者深入理解面向对象编程的核心概念。
25 4
|
30天前
|
存储 编译器 对象存储
【C++打怪之路Lv5】-- 类和对象(下)
【C++打怪之路Lv5】-- 类和对象(下)
27 4
|
30天前
|
编译器 C语言 C++
【C++打怪之路Lv4】-- 类和对象(中)
【C++打怪之路Lv4】-- 类和对象(中)
23 4
|
30天前
|
存储 安全 C++
【C++打怪之路Lv8】-- string类
【C++打怪之路Lv8】-- string类
21 1
|
1月前
|
存储 编译器 C语言
【C++打怪之路Lv3】-- 类和对象(上)
【C++打怪之路Lv3】-- 类和对象(上)
16 0
|
1月前
|
存储 编译器 C语言
深入计算机语言之C++:类与对象(上)
深入计算机语言之C++:类与对象(上)
|
1月前
|
存储 编译器 C++
【C++类和对象(下)】——我与C++的不解之缘(五)
【C++类和对象(下)】——我与C++的不解之缘(五)
|
1月前
|
编译器 C++
【C++类和对象(中)】—— 我与C++的不解之缘(四)
【C++类和对象(中)】—— 我与C++的不解之缘(四)
|
1月前
|
编译器 C语言 C++
C++入门3——类与对象2-2(类的6个默认成员函数)
C++入门3——类与对象2-2(类的6个默认成员函数)
23 3