当前位置:   article > 正文

C++拷贝构造函数与赋值运算符重载_重载赋值运算符与拷贝构造函数的关系

重载赋值运算符与拷贝构造函数的关系

顾得泉:个人主页

个人专栏:《Linux操作系统》 《C++从入门到精通》  《LeedCode刷题》

键盘敲烂,年薪百万!


一、拷贝构造函数

1.概念

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

       那在创建对象时,可否创建一个与已存在对象一某一样的新对象呢?

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

2.特性

拷贝构造函数也是特殊的成员函数,其特征如下:

     1.拷贝构造函数是构造函数的一个重载形式。

     2.拷贝构造函数的参数只有一个且必须是类类型对象的引用,使用传值方式编译器直接报错,因为会引发无穷递归调用。

  1. class Date
  2. {
  3. public:
  4. Date(int year = 1900, int month = 1, int day = 1)
  5. {
  6. _year = year;
  7. _month = month;
  8. _day = day;
  9. }
  10. // Date(const Date& d)   // 正确写法
  11. Date(const Date d)   // 错误写法:编译报错,会引发无穷递归
  12. {
  13. _year = d._year;
  14. _month = d._month;
  15. _day = d._day;
  16. }
  17. private:
  18. int _year;
  19. int _month;
  20. int _day;
  21. };
  22. int main()
  23. {
  24. Date d1;
  25. Date d2(d1);
  26. return 0;
  27. }

     3.若未显式定义,编译器会生成默认的拷贝构造函数。 默认的拷贝构造函数对象按内存存储按字节序完成拷贝,这种拷贝叫做浅拷贝,或者值拷贝。

  1. class Time
  2. {
  3. public:
  4. Time()
  5. {
  6. _hour = 1;
  7. _minute = 1;
  8. _second = 1;
  9. }
  10. Time(const Time& t)
  11. {
  12. _hour = t._hour;
  13. _minute = t._minute;
  14. _second = t._second;
  15. cout << "Time::Time(const Time&)" << endl;
  16. }
  17. private:
  18. int _hour;
  19. int _minute;
  20. int _second;
  21. };
  22. class Date
  23. {
  24. private:
  25. // 基本类型(内置类型)
  26. int _year = 1970;
  27. int _month = 1;
  28. int _day = 1;
  29. // 自定义类型
  30. Time _t;
  31. };
  32. int main()
  33. {
  34. Date d1;    
  35.    // 用已经存在的d1拷贝构造d2,此处会调用Date类的拷贝构造函数
  36.    //Date类并没有显式定义拷贝构造函数,则编译器会给Date类生成一个默认的拷贝构造函数
  37. Date d2(d1);
  38. return 0;
  39. }

注意:在编译器生成的默认拷贝构造函数中,内置类型是按照字节方式直接拷贝的,而自定义类型是调用其拷贝构造函数完成拷贝的。

     4.编译器生成的默认拷贝构造函数已经可以完成字节序的值拷贝了,还需要自己显式实现吗?当然像日期类这样的类是没必要的。那么下面的类呢?验证一下试试?

  1. typedef int DataType;
  2. class Stack
  3. {
  4. public:
  5. Stack(size_t capacity = 10)
  6. {
  7. _array = (DataType*)malloc(capacity * sizeof(DataType));
  8. if (nullptr == _array)
  9. {
  10. perror("malloc申请空间失败");
  11. return;
  12. }
  13. _size = 0;
  14. _capacity = capacity;
  15. }
  16. void Push(const DataType& data)
  17. {
  18. // CheckCapacity();
  19. _array[_size] = data;
  20. _size++;
  21. }
  22. ~Stack()
  23. {
  24. if (_array)
  25. {
  26. free(_array);
  27. _array = nullptr;
  28. _capacity = 0;
  29. _size = 0;
  30. }
  31. }
  32. private:
  33. DataType *_array;
  34. size_t _size;
  35. size_t _capacity;
  36. };
  37. int main()
  38. {
  39. Stack s1;
  40. s1.Push(1);
  41. s1.Push(2);
  42. s1.Push(3);
  43. s1.Push(4);
  44. Stack s2(s1);
  45. return 0;
  46. }

       运行结果会显示代码崩溃,是因为它拷贝构造的时候,析构了两次,导致第二次析构时,空间没有所产生了崩溃。

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

     5.拷贝构造函数典型调用场景:

         使用已存在对象创建新对象
         函数参数类型为类类型对象
         函数返回值类型为类类型对象

  1. class Date
  2. {
  3. public:
  4. Date(int year, int minute, int day)
  5. {
  6. cout << "Date(int,int,int):" << this << endl;
  7. }
  8. Date(const Date& d)
  9. {
  10. cout << "Date(const Date& d):" << this << endl;
  11. }
  12. ~Date()
  13. {
  14. cout << "~Date():" << this << endl;
  15. }
  16. private:
  17. int _year;
  18. int _month;
  19. int _day;
  20. };
  21. Date Test(Date d)
  22. {
  23. Date temp(d);
  24. return temp;
  25. }
  26. int main()
  27. {
  28. Date d1(2022,1,13);
  29. Test(d1);
  30. return 0;
  31. }

注意:为了提高程序效率,一般对象传参时,尽量使用引用类型,返回时根据实际场景,能用引用尽量使用引用。


二、赋值运算符重载

1.运算符重载

       C++为了增强代码的可读性引入了运算符重载,运算符重载是具有特殊函数名的函数,也具有其返回值类型,函数名字以及参数列表,其返回值类型与参数列表与普通的函数类似。

       函数名字为:关键字operator后面接需要重载的运算符符号。

       函数原型:返回值类型 operator操作符(参数列表)

    1.不能通过连接其他符号来创建新的操作符:比如operator@ 重载操作符必须有一个类类型参数

    2.用于内置类型的运算符,其含义不能改变,例如:内置的整型+,不能改变其含义        

    3.作为类成员函数重载时,其形参看起来比操作数数目少1,因为成员函数的第一个参数为隐藏的this.

    4.  .*  :: sizeof    ?:    .   注意以上5个运算符不能重载。这个经常在笔试选择题中出现。

  1. // 全局的operator==
  2. class Date
  3. {
  4. public:
  5. Date(int year = 1900, int month = 1, int day = 1)
  6.   {
  7.        _year = year;
  8.        _month = month;
  9.        _day = day;
  10.   }    
  11. //private:
  12. int _year;
  13. int _month;
  14. int _day;
  15. };

这里会发现运算符重载成全局的就需要成员变量是公有的,那么问题来了,封装性如何保证?
这里其实可以用我们后面学习的友元解决,或者干脆重载成成员函数。 

  1. bool operator==(const Date& d1, const Date& d2)
  2. {
  3.    return d1._year == d2._year
  4.   && d1._month == d2._month
  5.    && d1._day == d2._day;
  6. }
  7. void Test ()
  8. {
  9.    Date d1(2018, 9, 26);
  10.    Date d2(2018, 9, 27);
  11.    cout<<(d1 == d2)<<endl;
  12. }
  1. class Date
  2. {
  3. public:
  4. Date(int year = 1900, int month = 1, int day = 1)
  5. {
  6.        _year = year;
  7.        _month = month;
  8.        _day = day;
  9.   }
  10.    
  11.   // bool operator==(Date* this, const Date& d2)
  12.   // 这里需要注意的是,左操作数是this,指向调用函数的对象
  13.   bool operator==(const Date& d2)
  14. {
  15.        return _year == d2._year;
  16.            && _month == d2._month
  17.            && _day == d2._day;
  18. }
  19. private:
  20. int _year;
  21. int _month;
  22. int _day;
  23. };

2.赋值运算符重载

1.赋值运算符格式

       参数类型:const T&,传递引用可以提高传参效率

       返回值类型:T&,返回引用可以提高返回的效率,有返回值目的是为了支持连续赋值检测是否自己给自己赋值

       返回*this :要复合连续赋值的含义

  1. class Date
  2. {
  3. public :
  4. Date(int year = 1900, int month = 1, int day = 1)
  5.   {
  6.        _year = year;
  7.        _month = month;
  8.        _day = day;
  9.   }
  10. Date (const Date& d)
  11.   {
  12.        _year = d._year;
  13.        _month = d._month;
  14.        _day = d._day;
  15.   }
  16. Date& operator=(const Date& d)
  17. {
  18. if(this != &d)
  19.     {
  20.         _year = d._year;
  21.           _month = d._month;
  22.           _day = d._day;
  23.     }      
  24.        return *this;
  25. }
  26. private:
  27. int _year ;
  28. int _month ;
  29. int _day ;
  30. };

2.只能重载成类的成员函数

  1. class Date
  2. {
  3. public:
  4. Date(int year = 1900, int month = 1, int day = 1)
  5. {
  6. _year = year;
  7. _month = month;
  8. _day = day;
  9. }
  10. int _year;
  11. int _month;
  12. int _day;
  13. };
  14. // 赋值运算符重载成全局函数,注意重载成全局函数时没有this指针了,需要给两个参数
  15. Date& operator=(Date& left, const Date& right)
  16. {
  17. if (&left != &right)
  18. {
  19. left._year = right._year;
  20. left._month = right._month;
  21. left._day = right._day;
  22. }
  23. return left;
  24. }

       编译失败:error C2801: “operator =”必须是非静态成员

原因:赋值运算符如果不显式实现,编译器会生成一个默认的。此时用户再在类外自己实现一个全局的赋值运算符重载,就和编译器在类中生成的默认赋值运算符重载冲突了,故赋值运算符重载只能是类的成员函数。

3.编译器会生成一个默认重载

       当用户没有显式实现时,编译器会生成一个默认赋值运算符重载,以值的方式逐字节拷贝。

注意:内置类型成员变量是直接赋值的,而自定义类型成员变量需要调用对应类的赋值运算符重载完成赋值。

  1. class Time
  2. {
  3. public:
  4. Time()
  5. {
  6. _hour = 1;
  7. _minute = 1;
  8. _second = 1;
  9. }
  10. Time& operator=(const Time& t)
  11. {
  12. if (this != &t)
  13. {
  14. _hour = t._hour;
  15. _minute = t._minute;
  16. _second = t._second;
  17. }
  18. return *this;
  19. }
  20. private:
  21. int _hour;
  22. int _minute;
  23. int _second;
  24. };
  25. class Date
  26. {
  27. private:
  28. // 基本类型(内置类型)
  29. int _year = 1970;
  30. int _month = 1;
  31. int _day = 1;
  32. // 自定义类型
  33. Time _t;
  34. };
  35. int main()
  36. {
  37. Date d1;
  38. Date d2;
  39. d1 = d2;
  40. return 0;
  41. }

       既然编译器生成的默认赋值运算符重载函数已经可以完成字节序的值拷贝了,还需要自己实现吗?当然像日期类这样的类是没必要的。那么下面的类呢?验证一下试试?

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

注意:如果类中未涉及到资源管理,赋值运算符是否实现都可以;一旦涉及到资源管理则必须要实现。

3.前置++和后置++重载

  1. class Date
  2. {
  3. public:
  4. Date(int year = 1900, int month = 1, int day = 1)
  5. {
  6. _year = year;
  7. _month = month;
  8. _day = day;
  9. }
  10. // 前置++:返回+1之后的结果
  11. // 注意:this指向的对象函数结束后不会销毁,故以引用方式返回提高效率
  12. Date& operator++()
  13. {
  14. _day += 1;
  15. return *this;
  16. }
  17. // 后置++
  18. // 前置++和后置++都是一元运算符,为了让前置++与后置++形成能正确重载
  19. // C++规定:后置++重载时多增加一个int类型的参数,但调用函数时该参数不用传递,编译器自动传递
  20. // 注意:后置++是先使用后+1,因此需要返回+1之前的旧值,故需在实现时需要先将this保存一份,然后给this+1
  21. //       而temp是临时对象,因此只能以值的方式返回,不能返回引用
  22. Date operator++(int)
  23. {
  24. Date temp(*this);
  25. _day += 1;
  26. return temp;
  27. }
  28. private:
  29. int _year;
  30. int _month;
  31. int _day;
  32. };
  33. int main()
  34. {
  35. Date d;
  36. Date d1(2022, 1, 13);
  37. d = d1++;    // d: 2022,1,13   d1:2022,1,14
  38. d = ++d1;    // d: 2022,1,15   d1:2022,1,15
  39. return 0;
  40. }

结语:关于C++类和对象之拷贝构造函数和赋值运算符重载分享到这里就结束了,希望本篇文章的分享会对大家的学习带来些许帮助,如果大家有什么问题,欢迎大家在评论区留言,最后祝大家新的一年里学业有成,天天开心~~~ 

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

闽ICP备14008679号