std::unique_ptr::swap

std::unique_ptr::swap

void swap(unique_ptr& other);
(since C++11)

Swaps the managed objects and associated deleters of *this and another unique_ptr object other.

Parameters

other - another unique_ptr object to swap the managed object and the deleter with

Return value

(none).

Exceptions

noexcept specification:
noexcept

Example

#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;
}

Output:

Foo...
Foo...
up1->val:2
up2->val:1
~Foo...
~Foo...

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/memory/unique_ptr/swap

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部