copy and swap

为什么我们需要复制和交换习惯?

任何管理资源的类(包装程序,如智能指针)都需要实现big three。尽管拷贝构造函数和析构函数的目标和实现很简单。

但是复制分配运算符无疑是最细微和最困难的。

应该怎么做?需要避免什么陷阱?

copy-swap是解决方案,可以很好地协助赋值运算符实现两件事:避免代码重复,并提供强大的异常保证

它是如何工作的?

从概念上讲,它通过使用拷贝构造函数的功能来创建数据的本地副本,然后使用交换功能获取复制的数据,将旧数据与新数据交换来工作。然后,临时副本将销毁,并随身携带旧数据。我们剩下的是新数据的副本。

为了使用copy-swap,我们需要三件事:

  • 一个有效的拷贝构造函数
  • 一个有效的析构函数(两者都是任何包装程序的基础,因此无论如何都应完整)以及交换功能。

交换函数是一种不抛异常函数,它交换一个类的两个对象或者成员。我们可能很想使用std :: swap而不是提供我们自己的方法,但这是不可能的。 std :: swap在实现中使用了copy-constructor和copy-assignment运算符,我们最终将尝试根据自身定义赋值运算符!

(不仅如此,对swap的无条件调用将使用我们的自定义swap运算符,从而跳过了std :: swap会导致的不必要的类构造和破坏。)

具体例子如下:

  1. namespace A {
  2. template<typename T>
  3. class smart_ptr {
  4. public:
  5. smart_ptr() noexcept : ptr_(new T()) {
  6. }
  7. smart_ptr(const T &ptr) noexcept : ptr_(new T(ptr)) {
  8. }
  9. smart_ptr(smart_ptr &rhs) noexcept {
  10. ptr_ = rhs.release(); // 释放所有权,此时rhs的ptr_指针为nullptr
  11. }
  12. void swap(smart_ptr &rhs) noexcept { // noexcept == throw() 保证不抛出异常
  13. using std::swap;
  14. swap(ptr_, rhs.ptr_);
  15. }
  16. T *release() noexcept {
  17. T *ptr = ptr_;
  18. ptr_ = nullptr;
  19. return ptr;
  20. }
  21. T *get() const noexcept {
  22. return ptr_;
  23. }
  24. private:
  25. T *ptr_;
  26. };
  27. // 提供一个非成员swap函数for ADL(Argument Dependent Lookup)
  28. template<typename T>
  29. void swap(A::smart_ptr<T> &lhs, A::smart_ptr<T> &rhs) noexcept {
  30. lhs.swap(rhs);
  31. }
  32. }
  33. // 注释开启,会引发ADL冲突
  34. //namespace std {
  35. // // 提供一个非成员swap函数for ADL(Argument Dependent Lookup)
  36. // template<typename T>
  37. // void swap(A::smart_ptr<T> &lhs, A::smart_ptr<T> &rhs) noexcept {
  38. // lhs.swap(rhs);
  39. // }
  40. //
  41. //}
  42. int main() {
  43. using std::swap;
  44. A::smart_ptr<std::string> s1("hello"), s2("world");
  45. // 交换前
  46. std::cout << *s1.get() << " " << *s2.get() << std::endl;
  47. swap(s1, s2); // 这里swap 能够通过Koenig搜索或者说ADL根据s1与s2的命名空间来查找swap函数
  48. // 交换后
  49. std::cout << *s1.get() << " " << *s2.get() << std::endl;
  50. s1=s2;
  51. }

现在为了让上述的s1=s2完成工作,必须实现赋值运算符。

方法1

为了避免自赋值,通常采用下面写法 。

不好!

不具备异常安全,只具备自我赋值安全性

  1. smart_ptr &operator=(const smart_ptr &rhs) {
  2. if (*this != rhs) {
  3. delete ptr_;
  4. ptr_ = new T(rhs.ptr_); // 当new 发生异常,此时ptr_指向的而是一块被删除区域,而不是被赋值对象的区域
  5. return *this;
  6. }
  7. return *this;
  8. }

方法2

如果new出现异常,ptr_会保持原装! 也可以处理自我赋值! 还是不够好!

这样就会导致代码膨胀,于是导致了另一个问题:代码冗余

  1. // 方法2:如果new出现异常,ptr_会保持原装! 也可以处理自我赋值! 还是不够好!
  2. smart_ptr &operator=(const smart_ptr &rhs) {
  3. T *origin = ptr_;
  4. ptr_ = new T(rhs.ptr_);
  5. delete origin;
  6. return *this;
  7. }

方法3

copy and swap 很好!

  1. smart_ptr &operator=(smart_ptr &rhs) noexcept {
  2. smart_ptr tmp(rhs);
  3. swap(tmp);
  4. return *this;
  5. }

方法4

改为传值,同方法3!

  1. smart_ptr &operator=(smart_ptr rhs) noexcept {
  2. swap(rhs);
  3. return *this;
  4. }

C++11 move

我们在big three上加上move ctor与move assignment就构成了big five。

此时再次拓展上述的代码:

  1. // move ctor
  2. smart_ptr(smart_ptr &&rhs) noexcept {
  3. std::cout << "move ctor" << std::endl;
  4. ptr_ = rhs.ptr_;
  5. if (ptr_)
  6. rhs.ptr_ = nullptr;
  7. }
  8. // move assignment
  9. smart_ptr &operator=(smart_ptr &&rhs) noexcept {
  10. std::cout << "move assignment" << std::endl;
  11. smart_ptr tmp(rhs);
  12. swap(rhs);
  13. return *this;
  14. }

实际上,我们比那个不需要多写代码move assignment,copy-and-swap 技巧 和 move-and-swap 技巧是共享同一个函数的。当copy构造为上述的方法4时,对于C++ 11,编译器会依据参数是左值还是右值在拷贝构造函数和移动构造函数间进行选择:

  1. smart_ptr &operator=(smart_ptr rhs) noexcept {
  2. swap(rhs);
  3. return *this;
  4. }

所以当这个同上述写的

  1. smart_ptr &operator=(smart_ptr &&rhs) noexcept{}

同时存在,就会出现error: ambiguous overload for ‘operator=’ 。

调用处如下:

  1. A::smart_ptr<std::string> s1("hello"), s2("world");
  2. A::smart_ptr<std::string> s3 = s1;
  3. A::smart_ptr<std::string> s4 = std::move(s1);
  • 如果是 s3 = s1,这样就会调用拷贝构造函数来初始化other(因为s1是左值),赋值操作符会与新创建的对象交换数据,深度拷贝。这就是copy and swap 惯用法的定义:构造一个副本,与副本交换数据,并让副本在作用域内自动销毁。
  • 如果是s4 = std::move(s1),这样就会调用移动构造函数来初始化rhs(因为std::move(s1)是右值),所以这里没有深度拷贝,只有高效的数据转移。

因此也可以称呼它为“统一赋值操作符”,因为它合并了"拷贝赋值"与"移动赋值"。