std::unique_ptr::swap
来自cppreference.com
< cpp | memory | unique ptr
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
void swap(unique_ptr& other); |
(C++11 起) | |
交换被管理对象,与其他unique_ptr对象相关的删除器
other
.原文:
Swaps the managed objects and associated deleters with another unique_ptr object
other
.目录 |
[编辑] 参数
other | - | 另一个unique_ptr对象交换管理对象的删除
原文: another unique_ptr object to swap the managed object and the deleter with |
[编辑] 返回值
(无)
[编辑] 例外
[编辑] 示例
#include <iostream> #include <memory> struct Foo { Foo(int _val) : val(_val) { std::cout << "Foo...\n"; } ~Foo() { std::cout << "~Foo...\n"; } int val; }; int main() { std::unique_ptr<Foo> up1(new Foo(1)); std::unique_ptr<Foo> up2(new Foo(2)); up1.swap(up2); std::cout << "up1->val:" << up1->val << std::endl; std::cout << "up2->val:" << up2->val << std::endl; }
输出:
Foo... Foo... up1->val:2 up2->val:1 ~Foo... ~Foo...