深圳幻海软件技术有限公司 欢迎您!

【入土级】详解C++类&对象(中篇)

2023-06-05

目录前言:类的6个默认成员函数一, 构造函数1.概念2.特性二, 析构函数2.1概念2.2特性2.3牛刀小试 三, 拷贝构造函数3.1概念3.2特点四, 赋值运算符重载4.1运算符重载 五,const成员函数六,取地址及const取地址操作

目录

前言:类的6个默认成员函数

一, 构造函数

1. 概念

2. 特性

二, 析构函数

2.1 概念

2.2 特性

2.3 牛刀小试 

三, 拷贝构造函数

3.1概念

3. 2 特点

四, 赋值运算符重载

4. 1 运算符重载 

五, const成员函数

六,取地址及const取地址操作符重载

七,练习——实现日期计算器

结语


前言:类的6个默认成员函数

    如果一个类中什么成员都没有,简称为空类。
空类中真的什么都没有吗?并不是,任何类在什么都不写时,编译器会自动生成以下6个默认成员函数。
默认成员函数:用户没有显式实现,编译器会生成的成员函数称为默认成员函数。 

 

一, 构造函数

 1. 概念

   构造函数是一个 特殊的成员函数,名字与类名相同,创建类类型对象时由编译器自动调用,以保证每个数据成员都有 一个合适的初始值,并且 在对象整个生命周期内只调用一次。(这里可以理解为对数据 自动初始化)

2. 特性

构造函数是特殊的成员函数,需要注意的是,构造函数虽然名称叫构造,但是构造函数的主要任务 并不是开空间创建对象,而是初始化对象
其特征如下:
  • 1. 函数名与类名相同
  • 2. 无返回值
  • 3. 对象实例化时编译器自动调用对应的构造函数。
  • 4. 构造函数可以重载。(后面拷贝构造函数会体现)
  • 5. 如果存在未自定义默认构造函数,编译器不再生成默认构造函数。 
无参的构造函数和全缺省的构造函数都称为默认构造函数,并且默认构造函数只能有一个。 注意:无参构造函数、全缺省构造函数、我们没写,编译器默认生成的构造函数,都可以认为是默认构造函数。

下面是一段自定义构造函数的:

  1. #include <iostream>
  2. using namespace std;
  3. class Date
  4. {
  5. public:
  6. Date(int year = 2023, int month = 5, int day = 9) // 自定义默认构造函数,设置全缺省参数,对数据进行初始化。
  7. {
  8. _year = year;
  9. _month = month;
  10. _day = day;
  11. }
  12. private:
  13. int _year;
  14. int _month;
  15. int _day;
  16. };
  17. int main()
  18. {
  19. Date z;
  20. Date z1(2012, 12, 12); // 由于我们自定义构造函数支持带参数设置数据初始化。
  21. // 接下来,我们注释掉自定义默认构造函数,来测试一下编译器默认自动生成的构造函数。
  22. }

 当我们注释掉我们自定义的构造函数时,我们会发现z对象 的类成员变量,依旧是随机值。这里我们不禁会想,编译器自动生成的默认构造函数似乎什么也没做??

解答:C++把类型分成内置类型(基本类型)和自定义类型。
  • 内置类型就是语言提供的数据类型,如:int/char...;
  • 自定义类型就是我们使用class/struct/union等自己定义的类型。 
看看下面的程序,就会发现编译器生成默认的构造函数会对自定类型成员 _t调用的它的默认成员函数。

  1. #include <iostream>
  2. using namespace std;
  3. class Date
  4. {
  5. public:
  6. Date(int year = 2023, int month = 5, int day = 9) // 自定义默认构造函数,设置全缺省参数,对数据进行初始化。
  7. {
  8. _year = year;
  9. _month = month;
  10. _day = day;
  11. }
  12. private:
  13. int _year;
  14. int _month;
  15. int _day;
  16. };
  17. class Time
  18. {
  19. public:
  20. Date _t; // 自定义类型
  21. private: // 内置类型
  22. int _hour;
  23. int _minute;
  24. int _second;
  25. };
  26. int main()
  27. {
  28. Time k;
  29. }

调试结果如下: 

  特点:

1. 内置函数不做处理。

2. 自定义类型会调用(自定义类型的)默认构造函数。

注意:C++11 中针对内置类型成员不初始化的缺陷,又打了补丁,即: 内置类型成员变量在类中声明时可以给默认值

这里我们就有了两种内置成员初始化的方法: 

  • 1. 通过C++补丁初始化;()
  • 2. 自定义默认构造函数,同时给缺省参数。

二, 析构函数

2.1 概念

通过前面构造函数的学习,我们知道一个对象是怎么来的,那一个对象又是怎么没呢的?
析构函数:与构造函数功能相反,析构函数不是完成对对象本身的销毁,局部对象销毁工作是由编译器完成的。而 对象在销毁时会自动调用析构函数,完成对象中资源的清理工作

2.2 特性

析构函数是特殊的成员函数,其 特征如下:
  • 1. 析构函数名是在类名前加上字符 ~。
  • 2. 无参数无返回值类型。
  • 3. 一个类只能有一个析构函数。若未显式定义,系统会自动生成默认的析构函数。注意:析构函数不能重载
  • 4. 对象生命周期结束时,C++编译系统系统自动调用析构函数。

 首先我们来看下面代码:

  1. #include <iostream>
  2. using namespace std;
  3. class Date
  4. {
  5. public:
  6. Date(int year = 2023, int month = 5, int day = 9) // 默认构造函数
  7. {
  8. _year = year;
  9. _month = month;
  10. _day = day;
  11. }
  12. ~Date() // 默认析构函数
  13. {
  14. _year = _month = _day = 0;
  15. }
  16. private:
  17. int _year;
  18. int _month;
  19. int _day;
  20. };
  21. int main()
  22. {
  23. Date z;
  24. return 0;
  25. }

我们将显式析构函数注释掉,让我们测试一下编译器自动生成的默认析构函数的结果,下面的程序我们会看到:编译器生成的默认析构函数,对自定类型成员调用它的析构函数。

  1. #include <iostream>
  2. using namespace std;
  3. class Date
  4. {
  5. public:
  6. Date(int year = 2023, int month = 5, int day = 9)
  7. {
  8. _year = year;
  9. _month = month;
  10. _day = day;
  11. }
  12. ~Date()
  13. {
  14. cout << "~Date()" << endl; // 对调用Date的析构函数进行标记
  15. _year = _month = _day = 0;
  16. }
  17. private:
  18. int _year;
  19. int _month;
  20. int _day;
  21. };
  22. class Time
  23. {
  24. public:
  25. Date _t; // 自定义类型
  26. ~Time()
  27. {
  28. cout << "~Time()" << endl; // 对调用Time的析构函数进行标记
  29. }
  30. private: // 内置类型
  31. int _hour = 10;
  32. int _minute = 10;
  33. int _second = 10;
  34. };
  35. void func()
  36. {
  37. Time z;
  38. }
  39. int main()
  40. {
  41. func();
  42. return 0;
  43. }

 结果可以看出:

2.3 牛刀小试 

看下面代码,输出顺序是什么? 

  1. class A
  2. {
  3. public:
  4. A(int a = 0)
  5. {
  6. _a = a;
  7. cout << "A(int a = 0)->" <<_a<< endl;
  8. }
  9. ~A()
  10. {
  11. cout << "~A()->" <<_a<<endl;
  12. }
  13. private:
  14. int _a;
  15. };
  16. A aa3(3);
  17. void f()
  18. {
  19. static int i = 0;
  20. static A aa0(0);
  21. A aa1(1);
  22. A aa2(2);
  23. static A aa4(4);
  24. }
  25. // 构造顺序:3 0 1 2 4 1 2
  26. // 析构顺序:~2 ~1 ~2 ~1 ~4 ~0 ~3
  27. int main()
  28. {
  29. f();
  30. f();
  31. return 0;
  32. }

核心思路:遵循栈的思路,先进后出

三, 拷贝构造函数

 3.1概念

在现实生活中,可能存在一个与你一样的自己,我们称其为双胞胎。 

那在创建对象时,可否创建一个与已存在对象一某一样的新对象呢?
拷贝构造函数只有单个形参,该形参是对本 类类型对象的引用(一般常用const修饰),在用 已存在的类类型对象创建新对象时由编译器自动调用。 

3. 2 特点

拷贝构造函数也是特殊的成员函数,其 特征如下:
  • 1. 拷贝构造函数是构造函数的一个重载形式
  • 2. 拷贝构造函数的参数只有一个必须是类类型对象的引用,使用传值方式编译器直接报错,因为会引发无穷递归调用。

下面是会发生无穷递归代码:

  1. class Date
  2. {
  3. public:
  4. Date(int year = 2023, int month = 5, int day = 9)
  5. {
  6. _year = year;
  7. _month = month;
  8. _day = day;
  9. }
  10. Date(Date b1) // 正确代码:Date(Date& b1)
  11. {
  12. _year = b1._year;
  13. _month = b1._month;
  14. _day = b1._day;
  15. }
  16. private:
  17. int _year;
  18. int _month;
  19. int _day;
  20. };

无穷递归如图:

 换成类类型引用即可解决无穷递归的问题。 

  1. class Time
  2. {
  3. public:
  4. Time(int hour = 1 , int minute = 2, int second = 3)
  5. {
  6. _hour = hour;
  7. _minute = minute;
  8. _second = second;
  9. }
  10. Time(const Time& a)
  11. {
  12. _hour = a._hour;
  13. _minute = a._minute;
  14. _second = a._second;
  15. cout << "Time(Time& a)" << endl;
  16. }
  17. ~Time()
  18. {
  19. cout << "~Time()" << endl;
  20. }
  21. private:
  22. int _hour;
  23. int _minute;
  24. int _second;
  25. };
  26. class Date
  27. {
  28. public:
  29. Date(int year = 2023, int month = 5, int day = 9)
  30. {
  31. _year = year;
  32. _month = month;
  33. _day = day;
  34. }
  35. Date(const Date& b1) // 正确代码:Date(Date& b1)
  36. {
  37. _year = b1._year;
  38. _month = b1._month;
  39. _day = b1._day;
  40. }
  41. Time _t;
  42. private:
  43. int _year;
  44. int _month;
  45. int _day;
  46. };
  47. void func()
  48. {
  49. Date z;
  50. Date k(z);
  51. }
  52. int main()
  53. {
  54. func();
  55. return 0;
  56. }
在编译器生成的默认拷贝构造函数中,内置类型是按照 字节方式直接拷贝的,而自定义类型是调用其 拷贝构造函数完成拷贝的。

我们发现,编译器自动生成的拷贝构造函数,足够我们进行值拷贝,那么我们还需要自定义拷贝构造函数吗?

  1. // 这里会发现下面的程序会崩溃掉?这里就需要我们以后讲的深拷贝去解决。
  2. typedef int DataType;
  3. class Stack
  4. {
  5. public:
  6. Stack(size_t capacity = 10)
  7. {
  8. _array = (DataType*)malloc(capacity * sizeof(DataType));
  9. if (nullptr == _array)
  10. {
  11. perror("malloc申请空间失败");
  12. return;
  13. }
  14. _size = 0;
  15. _capacity = capacity;
  16. }
  17. void Push(const DataType& data)
  18. {
  19. // CheckCapacity();
  20. _array[_size] = data;
  21. _size++;
  22. }
  23. ~Stack()
  24. {
  25. if (_array)
  26. {
  27. free(_array);
  28. _array = nullptr;
  29. _capacity = 0;
  30. _size = 0;
  31. }
  32. }
  33. private:
  34. DataType *_array;
  35. size_t _size;
  36. size_t _capacity;
  37. };
  38. int main()
  39. {
  40. Stack s1;
  41. s1.Push(1);
  42. s1.Push(2);
  43. s1.Push(3);
  44. s1.Push(4);
  45. Stack s2(s1);
  46. return 0;
  47. }

所以类中如果没有涉及资源申请时,拷贝构造函数是否写都可以;一旦涉及到资源申请时,需要深度拷贝,则拷贝构造函数是一定要写的,否则就是浅拷贝

四, 赋值运算符重载

4. 1 运算符重载 

C++为了增强代码的可读性引入了运算符重载运算符重载是具有特殊函数名的函数,也具有其返回值类型,函数名字以及参数列表,其 返回值类型与参数列表与普通的函数类似
函数名字为:关键字 operator后面接需要重载的运算符符号
函数原型: 返回值类型 operator操作符(参数列表)
注意:
  • 不能通过连接其他符号来创建新的操作符:比如operator@
  • 重载操作符必须有一个类类型参数
  • 用于内置类型的运算符,其含义不能改变,例如:内置的整型+,不能改变其含义。
  • 作为类成员函数重载时,其形参看起来比操作数数目少1,因为成员函数的第一个参数为隐藏的this。
  • .*  ::   sizeof   ?:   . 注意以上5个运算符不能重载。这个经常在笔试选择题中出现。 

下面有有几个应用例子:

  1. class Time
  2. {
  3. public:
  4. Time(int hour = 1 , int minute = 2, int second = 3)
  5. {
  6. _hour = hour;
  7. _minute = minute;
  8. _second = second;
  9. }
  10. Time(const Time& a)
  11. {
  12. _hour = a._hour;
  13. _minute = a._minute;
  14. _second = a._second;
  15. cout << "Time(Time& a)" << endl;
  16. }
  17. bool operator==(const Time& a)
  18. {
  19. return _hour == a._hour &&
  20. _minute == a._minute &&
  21. _second == a._second;
  22. }
  23. bool operator>(const Time& a)
  24. {
  25. return _hour > a._hour &&
  26. _minute > a._minute &&
  27. _second > a._second;
  28. }
  29. Time& operator=(const Time& a) // 内成员赋值运算符重载
  30. {
  31. _hour = a._hour;
  32. _minute = a._minute;
  33. _second = a._second;
  34. return *this;
  35. }
  36. ~Time()
  37. {
  38. cout << "~Time()" << endl;
  39. }
  40. private: // 内置类型
  41. int _hour;
  42. int _minute;
  43. int _second;
  44. };

这里对赋值运算符进行补充;

1.赋值运算符只能重载成类的成员函数不能重载成全局函数  

原因:赋值运算符如果不显式实现,编译器会生成一个默认的。此时用户再在类外自己实现一个全局的赋值运算符重载,就和编译器在类中生成的默认赋值运算符重载冲突了,故 赋值运算符重载只能是类的成员函数
2.用户没有显式实现时,编译器会生成一个默认赋值运算符重载,以值的方式逐字节拷贝。注意:内置类型成员变量是直接赋值的,而自定义类型成员变量需要调用对应类的赋值运算符重载完成赋值。
既然 编译器生成的默认赋值运算符重载函数已经可以完成字节序的值拷贝了,还需要自己实现吗?当然像日期类这样的类是没必要的。那么下面的类呢?验证一下试试?
  1. // 这里会发现下面的程序会崩溃掉?这里就需要我们以后讲的深拷贝去解决。
  2. typedef int DataType;
  3. class Stack
  4. {
  5. public:
  6. Stack(size_t capacity = 10)
  7. {
  8. _array = (DataType*)malloc(capacity * sizeof(DataType));
  9. if (nullptr == _array)
  10. {
  11. perror("malloc申请空间失败");
  12. return;
  13. }
  14. _size = 0;
  15. _capacity = capacity;
  16. }
  17. void Push(const DataType& data)
  18. {
  19. // CheckCapacity();
  20. _array[_size] = data;
  21. _size++;
  22. }
  23. ~Stack()
  24. {
  25. if (_array)
  26. {
  27. free(_array);
  28. _array = nullptr;
  29. _capacity = 0;
  30. _size = 0;
  31. }
  32. }
  33. private:
  34. DataType* _array;
  35. size_t _size;
  36. size_t _capacity;
  37. };
  38. int main()
  39. {
  40. Stack s1;
  41. s1.Push(1);
  42. s1.Push(2);
  43. s1.Push(3);
  44. s1.Push(4);
  45. Stack s2;
  46. s2 = s1;
  47. return 0;
  48. }

 结果分析:

所以,如果类中未涉及到资源管理,赋值运算符是否实现(浅拷贝)都可以;一旦涉及到资源管理则必须要实现(深拷贝)。

五, const成员函数

将const修饰的“成员函数”称之为const成员函数,const修饰类成员函数,实际修饰该成员函数 隐含的this指针,表明在该成员函数中 不能对类的任何成员进行修改。

让我们看看下面的实例代码吧:

  1. class moss
  2. {
  3. public:
  4. moss(int year, int month, int day)
  5. {
  6. _year = year;
  7. _month = month;
  8. _day = day;
  9. }
  10. void Print()
  11. {
  12. cout << "Print()" << endl;
  13. cout << "year:" << _year << endl;
  14. cout << "month:" << _month << endl;
  15. cout << "day:" << _day << endl << endl;
  16. }
  17. void Print() const // 这就是const成员函数,同上面的Print函数是重载函数。
  18. // 试试将尾巴上的const 删去,看看会有什么事情发生。
  19. {
  20. cout << "Print()const" << endl;
  21. cout << "year:" << _year << endl;
  22. cout << "month:" << _month << endl;
  23. cout << "day:" << _day << endl << endl;
  24. }
  25. private:
  26. int _year; // 年
  27. int _month; // 月
  28. int _day; // 日
  29. };
  30. void Test3()
  31. {
  32. moss d1(2022, 1, 13);
  33. d1.Print();
  34. const moss d2(2022, 1, 13);
  35. d2.Print();
  36. }

 首先我们已经知道const具有限制权限的功能,比如 int this,如图:

 对本次事例解析:

六,取地址及const取地址操作符重载

这个比较容易理解,这两个默认成员函数一般不用重新定义 ,编译器默认会生成。 看下面代码:

  1. class Date
  2. {
  3. public :
  4. Date* operator&()
  5. {
  6. return this ;
  7. }
  8. const Date* operator&()const
  9. {
  10. return this ;
  11. }
  12. private :
  13. int _year ; // 年
  14. int _month ; // 月
  15. int _day ; // 日
  16. };
这两个运算符一般不需要重载,使用编译器生成的默认取地址的重载即可,只有特殊情况,才需要重载,比如 想让别人获取到指定的内容!

七,练习——实现日期计算器

用C++类编写一个日期计算器,利用今天的运算符重载知识,实现日期+天数,日期-天数,日期-日期的功能。

下面是代码分享:

头文件:

  1. #pragma once
  2. #include<iostream>
  3. using namespace std;
  4. #include <assert.h>
  5. class Date
  6. {
  7. public:
  8. // 获取某年某月的天数
  9. int GetMonthDay(int year, int month)
  10. {
  11. // 因为需要频繁调用,所以写成内联函数。
  12. static int M[13] = { 0,31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
  13. int day = M[month];
  14. if (month == 2 &&
  15. ((year % 4 == 0 && year % 100 != 0) ||
  16. (year % 400 == 0)))
  17. {
  18. day++;
  19. }
  20. return day;
  21. }
  22. // 全缺省的构造函数
  23. Date(int year = 1900, int month = 1, int day = 1)
  24. {
  25. _year = year;
  26. _month = month;
  27. _day = day;
  28. if (!CheckDate())
  29. {
  30. cout << "非法日期" << endl;
  31. exit(-1);
  32. }
  33. }
  34. bool CheckDate()
  35. {
  36. if (_month > 12 || _day > GetMonthDay(_year, _month))
  37. {
  38. return false;
  39. }
  40. else
  41. {
  42. return true;
  43. }
  44. }
  45. // 拷贝构造函数
  46. // d2(d1)
  47. Date(const Date& d)
  48. {
  49. _year = d._year;
  50. _month = d._month;
  51. _day = d._day;
  52. }
  53. // 赋值运算符重载
  54. // d2 = d3 -> d2.operator=(&d2, d3)
  55. Date& operator=(const Date& d)
  56. {
  57. _year = d._year;
  58. _month = d._month;
  59. _day = d._day;
  60. return *this;
  61. }
  62. // 析构函数, 全是内置函数,没什么好清理的,调用编译器自动生成的就行。
  63. ~Date()
  64. {
  65. ;
  66. }
  67. // 日期+=天数
  68. Date& operator+=(int day);
  69. // 日期+天数
  70. Date operator+(int day);
  71. // 日期-天数
  72. Date operator-(int day);
  73. // 日期-=天数
  74. Date& operator-=(int day);
  75. // 前置++
  76. Date& operator++();
  77. // 后置++
  78. Date operator++(int);
  79. // 后置--
  80. Date operator--(int);
  81. // 前置--
  82. Date& operator--();
  83. // >运算符重载
  84. bool operator>(const Date& d);
  85. // ==运算符重载
  86. bool operator==(const Date& d);
  87. // >=运算符重载
  88. bool operator >= (const Date& d);
  89. // <运算符重载
  90. bool operator < (const Date& d);
  91. // <=运算符重载
  92. bool operator <= (const Date& d);
  93. // !=运算符重载
  94. bool operator != (const Date& d);
  95. // 日期-日期 返回天数
  96. int operator-(const Date& d);
  97. int WeekDay()
  98. {
  99. Date start(1, 1, 1);
  100. int LeveDay = 1;
  101. int day = (*this - start);
  102. LeveDay += day;
  103. int WeekDay = LeveDay % 7;
  104. return WeekDay;
  105. }
  106. // 友元函数为外边全局函数拥有调用类成员的权限。
  107. friend ostream& operator<<(ostream& cou, const Date& a);
  108. friend istream& operator>>(istream& cin, Date& a);
  109. void Print()const // 本身是 Date* const this--是不能修改其指向的this,
  110. //但可以修改其内容,为了能接受被const Date* const this的对象所以需要缩小权限(方法就是函数名后加const)
  111. //反正print函数没有修改功能。
  112. {
  113. cout << _year << endl;
  114. cout << _month << endl;
  115. cout << _day << endl;
  116. }
  117. private:
  118. int _year;
  119. int _month;
  120. int _day;
  121. };
  122. // 放在全局中可以外部调用重载后的运算符,但放在外面又不能访问类成员,这里会用到后面的友元函数。
  123. // 重载cout输出流
  124. inline ostream& operator<<(ostream& cou, const Date& a)
  125. {
  126. cou << a._year << "年" << a._month << "月" << a._day << "日";
  127. return cou;
  128. }
  129. // 重载cint提取流
  130. inline istream& operator>>(istream& cin, Date& a)
  131. {
  132. cin >> a._year >> a._month >> a._day;
  133. assert(a.CheckDate());
  134. return cin;
  135. }

函数实现源文件:

  1. #define _CRT_SECURE_NO_WARNINGS 1
  2. #include"Date.h"
  3. // 日期+=天数
  4. Date& Date::operator+=(int day)
  5. {
  6. _day += day;
  7. while ( Date::GetMonthDay(_year, _month) < _day)
  8. {
  9. _day -= Date::GetMonthDay(_year, _month);
  10. _month++;
  11. if (_month == 13)
  12. {
  13. _month = 1;
  14. _year++;
  15. }
  16. }
  17. return *this;
  18. }
  19. // 日期+天数 让我们得出结果的临时拷贝,所以可以复用+= ,
  20. // 但有一个缺点是,日期其实已经被污染,不能在原日期下重新调用。
  21. Date Date::operator+(int day)
  22. {
  23. *this += day;
  24. Date tmp = *this;
  25. return tmp;
  26. }
  27. // 日期-天数 //可以复用 -= ,但原日期被修改。
  28. Date Date::operator-(int day)
  29. {
  30. *this -= day;
  31. Date tmp = *this;
  32. return tmp;
  33. }
  34. // 日期-=天数
  35. Date& Date::operator-=(int day)
  36. {
  37. _day -= day;
  38. while (_day <= 0)
  39. {
  40. _month--; // 如果_month == 0了,就提取不了对应月份的天数
  41. if (_month == 0)
  42. {
  43. _year--;
  44. _month = 12;
  45. }
  46. _day += Date::GetMonthDay(_year, _month);
  47. }
  48. return *this;
  49. }
  50. // 前置++ 加完后返回
  51. // 为了区分重载函数前置与后置++,C++做了重载区分,就是后置++增加一个int参数。
  52. Date& Date::operator++()
  53. {
  54. // 可以进行复用+=
  55. * this += 1;
  56. return *this;
  57. }
  58. // 后置++
  59. Date Date::operator++(int)
  60. {
  61. Date tmp(*this);
  62. *this += 1;
  63. return tmp;
  64. }
  65. // 后置--
  66. Date Date::operator--(int)
  67. {
  68. Date tmp(*this);
  69. *this -= 1;
  70. return tmp;
  71. }
  72. // 前置--
  73. Date& Date::operator--()
  74. {
  75. *this -= 1;
  76. return *this;
  77. }
  78. // // >运算符重载
  79. bool Date::operator>(const Date& d)
  80. {
  81. if ((_year > d._year) ||
  82. (_month > d._month) ||
  83. (_day > d._day))
  84. {
  85. return true;
  86. }
  87. else
  88. {
  89. return false;
  90. }
  91. }
  92. // ==运算符重载
  93. bool Date::operator==(const Date& d)
  94. {
  95. return _year == d._year &&
  96. _month == d._month &&
  97. _day == d._day;
  98. }
  99. // >=运算符重载
  100. bool Date::operator >= (const Date& d)
  101. {
  102. return (*this > d) || (*this == d);
  103. }
  104. // <运算符重载
  105. bool Date::operator < (const Date& d)
  106. {
  107. if ((_year < d._year) ||
  108. ((_year <= d._year) && (_month < d._month)) ||
  109. ((_year <= d._year) && (_month <= d._month) && _day < d._day))
  110. {
  111. return true;
  112. }
  113. else
  114. {
  115. return false;
  116. }
  117. }
  118. // <=运算符重载
  119. bool Date::operator <= (const Date& d)
  120. {
  121. return (*this < d) || (*this == d);
  122. }
  123. // !=运算符重载
  124. bool Date::operator != (const Date& d)
  125. {
  126. return _year != d._year &&
  127. _month != d._month &&
  128. _day != d._day;
  129. }
  130. // 日期-日期 返回天数 思路:用小的加到大的,计算中间的次数。
  131. int Date::operator-(const Date& d)
  132. {
  133. int flog = 1;
  134. Date a1(*this); // 假设a1大
  135. Date a2(d);
  136. if (a1 < a2) // a1小替换为a2
  137. {
  138. a1 = d;
  139. a2 = *this;
  140. flog = -1;
  141. }
  142. int n = 0;
  143. while (a2 < a1)
  144. {
  145. /*if (a2._day == 9 && a2._month == 5)
  146. {
  147. int x = 0;
  148. }*/
  149. ++a2;
  150. n++;
  151. }
  152. return n * flog;
  153. }

测试源文件:

  1. #define _CRT_SECURE_NO_WARNINGS 1
  2. #include"Date.h"
  3. void Test()
  4. {
  5. const char* WeekRoom[7] = { "周天", "周一", "周二", "周三", "周四", "周五", "周六" };
  6. do
  7. {
  8. cout << "------------------------------------" << endl;
  9. cout << "--------请输入要操作的选项----------" << endl;
  10. cout << "----1. 日期+天数---2.日期-天数----" << endl;
  11. cout << "----3. 日期-日期---0.结束程序 --------" << endl;
  12. cout << "----4. --------" << endl;
  13. int opertaton = 0;
  14. cin >> opertaton;
  15. Date a1, a2;
  16. int day;
  17. switch (opertaton)
  18. {
  19. case 1:
  20. cout << "-----------"<< endl;
  21. cin >> a1 >> day;
  22. cout << (a1 += day) << endl;
  23. cout << WeekRoom[a1.WeekDay()] << endl;
  24. break;
  25. case 2:
  26. cout << "-----------" << endl;
  27. cin >> a1 >> day;
  28. cout << (a1 -= day) << endl;
  29. cout << WeekRoom[a1.WeekDay()] << endl;
  30. break;
  31. case 3:
  32. cout << "-----------" << endl;
  33. cin >> a1 >> a2;
  34. cout << (a1 - a2);
  35. break;
  36. case 0:
  37. cout << "结束程序";
  38. exit(-1);
  39. default:
  40. break;
  41. }
  42. } while (true);
  43. }
  44. int main()
  45. {
  46. Test();
  47. return 0;
  48. }

结语

本小节就到这里了,感谢小伙伴的浏览,如果有什么建议,欢迎在评论区评论;如果给小伙伴带来一些收获请留下你的小赞,你的点赞和关注将会成为博主创作的动力。

文章知识点与官方知识档案匹配,可进一步学习相关知识
算法技能树首页概览47642 人正在系统学习中