C++【类和对象】(超具体!!!)

打印 上一主题 下一主题

主题 662|帖子 662|积分 1986

1.运算符重载

(1).C++规定类范例运算符使用时,必须转换成调用运算符重载。
(2).运算符重载是具有特殊名字的函数,名字即是operator加需要使用的运算符,具有返回范例和参数列表及函数体。
(3).重载运算符函数的参数个数和该运算符作用的运算对象的个数保持一致,一元运算符有一个参数,二元运算符有两个参数,二元运算符左边的传给第一个参数,右边的传给第二个参数。
(4).假如一个重载运算符函数是成员函数,那么它的第一个函数参数是this指针,以是显示出来就少一个参数。
(5).运算符重载以后,其优先级和结合性与对应的内置范例运算符保持⼀致。
(6).不能通过毗连语法中没有的符号来创建新的操作符:比如operator@
(7).
这五个运算符不能重载。
(8).C++为了区分前置++和后置++运算符重载函数,规定前置为operator++(),后置++为operator++(int)
  1. #include<iostream>
  2. using namespace std;
  3. class Date
  4. {
  5. public:
  6.         Date(int year, int month, int day)
  7.         {
  8.                 _year = year;
  9.                 _month = month;
  10.                 _day = day;
  11.         }
  12.         bool operator == (const Date& d)
  13.         {
  14.                 return _year == d._year
  15.                         && _month == d._month
  16.                         && _day == d._day;
  17.         }
  18. //d1-d2
  19. int        operator-(const Date& d);
  20. //日期-天数
  21. Date operator-(int day);
  22. private:
  23.         int _year;
  24.         int _month;
  25.         int _day;
  26. };
  27. int main()
  28. {
  29.         Date d1(2024, 3, 20);
  30.         Date d2(2025, 3, 18);
  31.         if (d1 == d2)
  32.         {
  33.                 cout << "相等" << endl;
  34.         }
  35.         else
  36.                 cout << "不相等" << endl;
  37.         return 0;
  38. }
复制代码
2.赋值运算符重载

赋值运算符重载是一个默认成员函数(不能重载到全局),用于完成两个已经存在的对象直接的拷贝赋值。
赋值运算符重载的特点:
(1).赋值运算符重载是一个函数重载,规定重载必须为成员函数,赋值运算重载的参数发起写成const 当前类范例引用,否则会传值传参会有拷贝。
(2).有返回值,且发起写成当前类范例引⽤,引⽤返回可以提高效率,有返回值目标是为了支持连续赋值场景。
(3).没有显式实现时,编译器会自动生成⼀个默认赋值运算符重载,默认赋值运算符重载行为跟默认拷贝构造函数类似,对内置范例成员变量会完成值拷贝/浅拷贝(⼀个字节⼀个字节的拷贝),对自界说范例成员变量会调用他的赋值重载函数。
(4).假如一个类显示实现析构并开释了资源,就需要我们显示实现赋值运算符重载,否则就不需要。
  1. #include<iostream>
  2. using namespace std;
  3. class Date
  4. {
  5. public:
  6.         Date(int year, int month, int day)
  7.         {
  8.                 _year = year;
  9.                 _month = month;
  10.                 _day = day;
  11.         }
  12.         Date(const Date& d)
  13.         {
  14.                 _year = d._year;
  15.                 _month = d._month;
  16.                 _day = d._day;
  17.         }
  18.         Date& operator=(const Date& d)
  19.         {
  20.                 if (this != &d)
  21.                 {
  22.                         _year = d._year;
  23.                         _month =d._month;
  24.                         _day = d._day;
  25.                 }
  26.                 return*this;
  27.         }
  28.         void Print()
  29.         {
  30.                 cout << _year << "-" << _month << "-" << _day << endl;
  31.         }
  32. private:
  33.         int _year;
  34.         int _month;
  35.         int _day;
  36. };
  37. int main()
  38. {
  39.         Date d1(2004,8,18);
  40.         Date d2(d1);
  41.         d1.Print();
  42.         d2.Print();
  43.         return 0;
  44. }
复制代码
3.日期类的实现

  1. //Date.h
  2. #include<iostream>
  3. using namespace std;
  4. class Date
  5. {
  6. public:
  7.         Date(int year, int month, int day)
  8.         {
  9.                 _year = year;
  10.                 _month = month;
  11.                 _day = day;
  12.         }
  13.         int GetMonthDay(int year,int month)
  14.         {
  15.                 int monthDayArray[13] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };
  16.                 if (month == 2 && ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)))
  17.                 {
  18.                         return 29;
  19.                 }
  20.                 else
  21.                         return monthDayArray[month];
  22.         }
  23.         Date& operator+=(int day);
  24.         Date operator+(int day);
  25.         Date& operator-=(int day);
  26.         Date operator-(int day);
  27.         // ++d1 ->d1.operator++()
  28.         Date& operator++();
  29.         // d1++ ->d1.operator++(1);
  30.         Date operator++(int);
  31.         Date& operator--();
  32.         Date operator--(int);
  33.         bool operator<(const Date& d);
  34.         bool operator<=(const Date& d);
  35.         bool operator>(const Date& d);
  36.         bool operator>=(const Date& d);
  37.         bool operator==(const Date& d);
  38.         bool operator!=(const Date& d);
  39.        
  40.         int operator-(const Date& d);
  41.         void Print();
  42. private:
  43.         int _year;
  44.         int _month;
  45.         int _day;
  46. };
复制代码
  1. //Date.cpp
  2. #include"Date.h";
  3. Date& Date::operator+=(int day)
  4. {
  5.         _day += day;
  6.         while (_day > GetMonthDay(_year, _month))
  7.         {
  8.                 _day -= GetMonthDay(_year, _month);
  9.                 ++_month;
  10.                 if (_month == 13)
  11.                 {
  12.                         _year++;
  13.                         _month = 1;
  14.                 }
  15.         }
  16.         return *this;
  17. }
  18. // d1 + 100
  19. Date Date::operator+(int day)
  20. {
  21.         Date tmp(*this);
  22.         tmp += day;
  23.         return tmp;
  24. }
  25. void Date::Print()
  26. {
  27.         cout << _year << "-" << _month << "-" << _day << endl;
  28. }
  29. // ++d1
  30. Date& Date::operator++()
  31. {
  32.         *this += 1;
  33.         return *this;
  34. }
  35. // d1++
  36. Date Date::operator++(int)
  37. {
  38.         Date tmp(*this);
  39.         *this += 1;
  40.         return tmp;
  41. }
  42. // d1 < d2
  43. bool Date::operator<(const Date& d)
  44. {
  45.         if (_year < d._year)
  46.         {
  47.                 return true;
  48.         }
  49.         else if (_year == d._year
  50.                 && _month < d._month)
  51.         {
  52.                 return true;
  53.         }
  54.         else if (_year == d._year
  55.                 && _month == d._month
  56.                 && _day < d._day)
  57.         {
  58.                 return true;
  59.         }
  60.         else
  61.         {
  62.                 return false;
  63.         }
  64. }
  65. bool Date::operator==(const Date& d)
  66. {
  67.         return _year == d._year
  68.                 && _month == d._month
  69.                 && _day == d._day;
  70. }
  71. // d1 <= d2
  72. bool Date::operator<=(const Date& d)
  73. {
  74.         return *this < d || *this == d;
  75. }
  76. bool Date::operator>(const Date& d)
  77. {
  78.         return !(*this <= d);
  79. }
  80. bool Date::operator>=(const Date& d)
  81. {
  82.         return !(*this < d);
  83. }
复制代码
  1. //test.cpp
  2. #include"Date.h"
  3. void TestDate1()
  4. {
  5.         Date d1(2025, 3, 9);
  6.         d1.Print();
  7.         Date d2 = d1 + 100;
  8.         d2.Print();
  9.         d1.Print();
  10.         Date d3 = d1 += 100;
  11.         d1.Print();
  12.         d3.Print();
  13. }
  14. void TestDate2()
  15. {
  16.         Date d1(2025, 3, 9);
  17.         Date ret1 = ++d1;
  18.         //Date ret1 = d1.operator++();
  19.         d1.Print();
  20.         ret1.Print();
  21.         Date d2(2025, 3, 9);
  22.         Date ret2 = d2++;
  23.         //Date ret2 = d2.operator++(10000);
  24.         d2.Print();
  25.         ret2.Print();
  26. }
  27. int main()
  28. {
  29.         TestDate2();
  30.         return 0;
  31. }
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

星球的眼睛

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表