public member function
<tuple>

std::unique_ptr::swap

void swap (unique_ptr& x) noexcept;
交换内容
将 unique_ptr 对象的内容与 x 的内容进行交换,在不销毁任一对象的情况下在它们之间转移所管理对象的所有权。

该函数通过调用它们的 swap 来交换各自的 存储指针存储的删除器

参数

x
同一类型的另一个 unique_ptr 对象(即具有相同的类模板参数)。

返回值



示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// unique_ptr::swap example
#include <iostream>
#include <memory>

int main () {
  std::unique_ptr<int> foo (new int(10));
  std::unique_ptr<int> bar (new int(20));

  foo.swap(bar);

  std::cout << "foo: " << *foo << '\n';
  std::cout << "bar: " << *bar << '\n';

  return 0;
}

输出
foo: 20
bar: 10


另见