std::weak_ptr<T>::swap
来自 cppreference.com
void swap( weak_ptr& r ) noexcept; |
(自 C++11 起) | |
交换存储的指针值和 *this 和 r 的所有权。引用计数(如果有)不会调整。
[编辑] 参数
r | - | 智能指针,用于交换其内容 |
[编辑] 返回值
(无)
[编辑] 示例
运行此代码
#include <iostream> #include <memory> #include <string> struct Foo { Foo(int _val) : val(_val) { std::cout << "Foo...\n"; } ~Foo() { std::cout << "~Foo...\n"; } std::string print() { return std::to_string(val); } int val; }; int main() { std::shared_ptr<Foo> sp1 = std::make_shared<Foo>(100); std::shared_ptr<Foo> sp2 = std::make_shared<Foo>(200); std::weak_ptr<Foo> wp1 = sp1; std::weak_ptr<Foo> wp2 = sp2; auto print = [&]() { auto p1 = wp1.lock(); auto p2 = wp2.lock(); std::cout << " p1=" << (p1 ? p1->print() : "nullptr"); std::cout << " p2=" << (p2 ? p2->print() : "nullptr") << '\n'; }; print(); wp1.swap(wp2); print(); wp1.reset(); print(); wp1.swap(wp2); print(); }
输出
Foo... Foo... p1=100 p2=200 p1=200 p2=100 p1=nullptr p2=100 p1=100 p2=nullptr ~Foo... ~Foo...