当前位置:   article > 正文

C++:运算符重载与类的赋值运算符重载函数_c++ 类 重载赋值运算符

c++ 类 重载赋值运算符

目录

章节知识架构

一.运算符重载

1. 运算符重载的基本概念

    代码段1

2.关于运算符重载的重要语法细则

二.运算符重载在类中的使用

三.类的默认成员函数:=重载函数(赋值运算符重载) 

1.自定义=重载函数

   代码段2

2.编译器默认生成的=重载函数 

四.前置++(--)和后置++(--)的重载


章节知识架构

                                                    

一.运算符重载

C++为了增强代码的可读性引入了运算符重载,运算符重载是具有特殊函数名的函数

1. 运算符重载的基本概念

C++中定义运算符重载的关键字:operator 

  1. 运算符重载本质上是函数,具有返回值类型,函数名字以及参数列表,其返回值类型参数列表与普通的函数定义规则类似;
  2. 运算符重载函数函数名命名规则关键字operator + 需要重载的运算符符号(例如定义函数名operator>,表示>的运算符重载);
  3. 运算符重载函数形参个数必须和被重载运算符的目数相同:单目操作符的重载函数有且只有一个形参,双目操作符的重载函数有且只有两个形参.
  4. 运算符重载函数必须有一个类类型参数
  5. 运算符重载函数首部的一般形式:返回值类型+operator运算符+(参数列表);

比如:

现在有一个记录日期的类Date,我们想比较两个日期类对象所记录的日期大小,因此设计一个运算符 '>'的重载函数

函数返回类型定义为bool;bool为一个字节的整形,其只能为true(值1)或false(值为0)

函数名定义为: operator>

函数的形参表为:(const Date & date2 ,const Date & date2)

代码段1

  1. #include <iostream>
  2. using std::cout;
  3. using std::cin;
  4. using std::endl;
  5. class Date 记录日期的类
  6. {
  7. public:
  8. Date(int day = 0, int month = 0,int year = 0) Date的带参构造函数
  9. {
  10. _day = day;
  11. _month = month;
  12. _year = year;
  13. }
  14. int _day;
  15. int _month;
  16. int _year;
  17. };
  18. bool operator> (const Date& date1, const Date& date2) 将 > 运算符进行重载用于日期比较
  19. {
  20. if (date1._year > date2._year)
  21. {
  22. return true;
  23. }
  24. else if (date1._year == date2._year && date1._month > date2._month)
  25. {
  26. return true;
  27. }
  28. else if (date1._year == date2._year && date1._month == date2._month && date1._day >
  29. date1._day)
  30. {
  31. return true;
  32. }
  33. return false;
  34. }
  35. int main()
  36. {
  37. Date a(2021, 4, 23);
  38. Date b(2022, 1, 27);
  39. if (a > b) 用运算符重载来比较两个日期对象
  40. {
  41. cout << "Date a > Date b" << endl;
  42. }
  43. else
  44. {
  45. cout << "Date a < Date b" << endl;
  46. }
  47. return 0;
  48. }

C++编译其会根据运算符的操作数的类型来判断该运算符是否要调用重载以及调用哪种形式的重载,比如上述代码段主函数中的 a>b表达式:

2.关于运算符重载的重要语法细则

  • 不能通过连接其他符号来创建新的操作符:比如operator@
  • 作为类成员运算符重载函数时,其形参个数看起来比运算符目数少1,因为类成员函数的第一个参数为隐藏的this指针;关于this指针:http://t.csdn.cn/hncvq
  • 赋值运算符重载(比如=,+=,-+,*=等等)只能作为类的成员函数不能重载成全局函数
  • '".* "    "::"    "sizeof"     "?:"    "."     注意以上5个运算符不能重载。

二.运算符重载在类中的使用

  • C++引入运算符重载是为了提高代码的可读性,允许我们构建复杂类对象之间的运算表达式。
  • 运算符重载必须有一个类类型形参,因此在运算符重载函数中我们难免要访问类的成员变量
  • 为了保证封装性,类的成员变量往往定义在类的私有域中。
  • 所以为了保证类对象的封装性的同时可以让运算符重载函数直接访问到类的成员变量,大多数情况下我们往往把运算符重载函数定义为类的成员函数(方法)

现在对代码段1进行优化:

把运算符重载函数定义为类的成员函数(方法)

运算符重载函数定义为类的成员函数时注意不要忽略this指针

  1. #include <iostream>
  2. using std::cout;
  3. using std::cin;
  4. using std::endl;
  5. class Date //记录日期的类
  6. {
  7. public:
  8. Date(int day = 0, int month = 0,int year = 0)
  9. {
  10. _day = day;
  11. _month = month;
  12. _year = year;
  13. }
  14. bool operator> (const Date& date) //将 > 运算符进行重载
  15. {
  16. if (_year > date._year)
  17. {
  18. return true;
  19. }
  20. else if (_year == date._year &&_month > date._month)
  21. {
  22. return true;
  23. }
  24. else if (_year == date._year && _month == date._month && _day > date._day)
  25. {
  26. return true;
  27. }
  28. return false;
  29. }
  30. private:
  31. int _day;
  32. int _month;
  33. int _year;
  34. };
  35. int main()
  36. {
  37. Date a(29, 4, 2020);
  38. Date b(27, 4, 2020);
  39. if (a > b)
  40. {
  41. cout << "Date a > Date b" << endl;
  42. }
  43. else
  44. {
  45. cout << "Date a < Date b" << endl;
  46. }
  47. return 0;
  48. }

 

 

简单地观察一下 a>b表达式的汇编指令:

三.类的默认成员函数:=重载函数(赋值运算符重载) 

类的默认成员函数中有一个赋值运算符=的重载

如果我们没有在类中自定义一个赋值运算符=的重载,编译器会在类中自动生成一个默认的=运算符重载函数

1.自定义=重载函数

赋值运算符(=)只能重载成类的成员函数不能重载成全局函数

  • 原因:赋值运算符如果没有被我们定义,编译器会在类中(任何类中)生成一个默认的赋值运算符重载。此时若我们在类域外定义一个全局的赋值运算符重载,就会和编译器在类中生成的默认赋值运算符重载冲突了,故赋值运算符重载只能是类的成员函数。

自定义=重载函数:

现在Date类中实现一个=重载函数:如果我们在类中自定义了=重载函数,编译器便不会在编译阶段自动生成其默认的赋值运算符(=)重载

代码段2

  1. using std::cout;
  2. using std::cin;
  3. using std::endl;
  4. class Date 记录日期的类
  5. {
  6. public:
  7. Date(int day = 0, int month = 0,int year = 0)
  8. {
  9. _day = day;
  10. _month = month;
  11. _year = year;
  12. }
  13. bool operator> (const Date& date) 将 > 运算符进行重载
  14. {
  15. if (_year > date._year)
  16. {
  17. return true;
  18. }
  19. else if (_year == date._year &&_month > date._month)
  20. {
  21. return true;
  22. }
  23. else if (_year == date._year && _month == date._month && _day > date._day)
  24. {
  25. return true;
  26. }
  27. return false;
  28. }
  29. Date& operator=(const Date& date) 将 = 运算符进行重载
  30. {
  31. _day = date._day;
  32. _month = date._month;
  33. _year = date._year;
  34. return (*this);
  35. }
  36. private:
  37. int _day;
  38. int _month;
  39. int _year;
  40. };
  41. int main()
  42. {
  43. Date a(29, 4, 2020);
  44. Date b;
  45. Date c;
  46. c = b = a; 用=的重载完成连续赋值
  47. if (a > b)
  48. {
  49. cout << "Date a > Date b" << endl;
  50. }
  51. else
  52. {
  53. cout << "Date a <= Date b" << endl;
  54. }
  55. return 0;
  56. }

可以试着观察一下代码段中c=b=a的汇编指令:

注意:=重载函数使用引用传参引用返回而不使用值传参值返回是为了提高代码的运行效率(值传递需要拷贝出临时的类对象)

参见:http://t.csdn.cn/Rc5aI

           http://t.csdn.cn/9tLyK

2.编译器默认生成的=重载函数 

编译器默认生成的=重载函数:

编译器默认生成=运算符重载函数的功能和代码段2中自定义=重载函数功能类似

可以简单验证一下:

将代码段2中等号重载的代码段注释掉

  1. using std::cout;
  2. using std::cin;
  3. using std::endl;
  4. class Date //记录日期的类
  5. {
  6. public:
  7. Date(int day = 0, int month = 0,int year = 0)
  8. {
  9. _day = day;
  10. _month = month;
  11. _year = year;
  12. }
  13. bool operator> (const Date& date) //将 > 运算符进行重载
  14. {
  15. if (_year > date._year)
  16. {
  17. return true;
  18. }
  19. else if (_year == date._year &&_month > date._month)
  20. {
  21. return true;
  22. }
  23. else if (_year == date._year && _month == date._month && _day > date._day)
  24. {
  25. return true;
  26. }
  27. return false;
  28. }
  29. //Date& operator=(const Date& date) //将等号重载的代码段注释掉
  30. //{
  31. // if (this != &date)
  32. // {
  33. // _day = date._day;
  34. // _month = date._month;
  35. // _year = date._year;
  36. // }
  37. // return (*this);
  38. //}
  39. private:
  40. int _day;
  41. int _month;
  42. int _year;
  43. };
  44. int main()
  45. {
  46. Date a(29, 4, 2020);
  47. Date b;
  48. Date c;
  49. c = b = a;
  50. if (a > b)
  51. {
  52. cout << "Date a > Date b" << endl;
  53. }
  54. else
  55. {
  56. cout << "Date a <= Date b" << endl;
  57. }
  58. return 0;
  59. }

如果,中有类对象成员变量,该编译器默认生成的=重载函数中会去调用其成员类对象的赋值运算符重载。 

比如:

  1. using std::cout;
  2. using std::cin;
  3. using std::endl;
  4. class subclass //定义一个被嵌套的类
  5. {
  6. public:
  7. subclass(int a = 100) 定义subclass的构造函数
  8. {
  9. _a = 100;
  10. }
  11. subclass& operator = (const subclass& date) 定义subclass的赋值运算符重载函数
  12. {
  13. _a = date._a;
  14. cout << "hello" << endl; 打印一下表示该函数被调用
  15. return (*this);
  16. }
  17. private:
  18. int _a;
  19. };
  20. class Date //记录日期的类
  21. {
  22. public:
  23. Date(int day = 0, int month = 0,int year = 0,int subclass=0)
  24. {
  25. _day = day;
  26. _month = month;
  27. _year = year;
  28. }
  29. //bool operator> (const Date& date) //将 > 运算符进行重载
  30. //{
  31. // if (_year > date._year)
  32. // {
  33. // return true;
  34. // }
  35. // else if (_year == date._year &&_month > date._month)
  36. // {
  37. // return true;
  38. // }
  39. // else if (_year == date._year && _month == date._month && _day > date._day)
  40. // {
  41. // return true;
  42. // }
  43. // return false;
  44. //}
  45. //Date& operator=(const Date& date) //将等号重载的代码段注释掉
  46. //{
  47. // if (this != &date)
  48. // {
  49. // _day = date._day;
  50. // _month = date._month;
  51. // _year = date._year;
  52. // }
  53. // return (*this);
  54. //}
  55. private:
  56. int _day;
  57. int _month;
  58. int _year;
  59. subclass _subdate;
  60. };
  61. int main()
  62. {
  63. Date a(29, 4, 2020,100);
  64. Date b;
  65. Date c;
  66. c = b = a;
  67. //if (a > b)
  68. //{
  69. // cout << "Date a > Date b" << endl;
  70. //}
  71. //else
  72. //{
  73. // cout << "Date a <= Date b" << endl;
  74. //}
  75. return 0;
  76. }

可以通过汇编指令来观察这个过程:

  • 需要注意的是:类似于拷贝构造函数,编译器在类中默认生成的赋值运算符重载是以逐个字节进行拷贝的方式完成类对象赋值的(这种拷贝方式称为浅拷贝)。 
  • 因此编译器默认生成的赋值运算符重载不能用于一些申请了额外内存资源类对象之间的拷贝赋值。(比如栈对象之间的拷贝赋值)

如果栈对象之间使用编译器默认生成的=重载函数,则会出现以下情形:

所以涉及到内存资源管理的类对象之间只能使用用户自定义的=重载完成深拷贝

四.前置++(--)和后置++(--)的重载

 针对Date类,我们来实现一下表示日期自增的++重载(日期增加一天)

  1. using std::cout;
  2. using std::cin;
  3. using std::endl;
  4. //class subclass //定义一个被嵌套的类
  5. //{
  6. //public:
  7. // subclass(int a = 100) //定义subclass的构造函数
  8. // {
  9. // _a = 100;
  10. // }
  11. // subclass& operator = (const subclass& date) //定义subclass的赋值运算符重载函数
  12. // {
  13. // _a = date._a;
  14. // cout << "hello" << endl; //打印一下表示该函数被调用
  15. // return (*this);
  16. // }
  17. //private:
  18. //
  19. // int _a;
  20. //};
  21. class Date //记录日期的类
  22. {
  23. public:
  24. Date(int day = 0, int month = 0, int year = 0) //Date的构造函数
  25. {
  26. _day = day;
  27. _month = month;
  28. _year = year;
  29. }
  30. //bool operator> (const Date& date) //将 > 运算符进行重载
  31. //{
  32. // if (_year > date._year)
  33. // {
  34. // return true;
  35. // }
  36. // else if (_year == date._year &&_month > date._month)
  37. // {
  38. // return true;
  39. // }
  40. // else if (_year == date._year && _month == date._month && _day > date._day)
  41. // {
  42. // return true;
  43. // }
  44. // return false;
  45. //}
  46. //Date& operator=(const Date& date)
  47. //{
  48. // if (this != &date)
  49. // {
  50. // _day = date._day;
  51. // _month = date._month;
  52. // _year = date._year;
  53. // }
  54. // return (*this);
  55. //}
  56. Date& operator++() //实现日期类的前置++
  57. {
  58. _day++;
  59. return (*this);
  60. }
  61. Date operator++(int) //实现日期类的后置++
  62. {
  63. Date tem(*this);
  64. _day++;
  65. return tem;
  66. }
  67. void Print() //类对象的日期打印函数
  68. {
  69. cout << _year << ' ' << _month << ' ' << _day << ' ' << endl;
  70. }
  71. private:
  72. int _day;
  73. int _month;
  74. int _year;
  75. };
  76. int main()
  77. {
  78. Date a(5, 4, 2020);
  79. a.Print();
  80. Date ret1(a++);
  81. ret1.Print();
  82. Date ret2(++a);
  83. ret2.Print();
  84. return 0;
  85. }

代码图解:

注意一个语法细则:

前置--和后置--的重载和++类似。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/406198
推荐阅读
相关标签
  

闽ICP备14008679号