命名空间
变体
操作

std::shared_ptr<T>::reset

来自 cppreference.cn
< cpp‎ | 内存‎ | shared ptr
 
 
内存管理库
(仅作说明*)
未初始化内存算法
(C++17)
(C++17)
(C++17)
受约束的未初始化
内存算法
C 库

分配器
内存资源
垃圾回收支持
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
未初始化存储
(直到 C++20*)
(直到 C++20*)
显式生命周期管理
 
 
void reset() noexcept;
(1) (C++11 起)
template< class Y >
void reset( Y* ptr );
(2) (C++11 起)
template< class Y, class Deleter >
void reset( Y* ptr, Deleter d );
(3) (C++11 起)
template< class Y, class Deleter, class Alloc >
void reset( Y* ptr, Deleter d, Alloc alloc );
(4) (C++11 起)

将托管对象替换为 ptr 指向的对象。可以提供可选的删除器 d,当没有 shared_ptr 对象拥有新对象时,此删除器将用于销毁新对象。默认情况下,delete 表达式用作删除器。始终选择与提供的类型对应的适当的 delete 表达式,这就是该函数作为使用单独参数 Y 的模板实现的原因。

如果 *this 已经拥有一个对象,并且它是最后一个拥有该对象的 shared_ptr,则通过所拥有的删除器销毁该对象。

如果 ptr 指向的对象已被拥有,则该函数通常会导致未定义行为。

1) 释放托管对象(如果有)的所有权。调用后,*this 不管理任何对象。等效于 shared_ptr().swap(*this);
2-4) 将托管对象替换为 ptr 指向的对象。Y 必须是完整类型且可隐式转换为 T。此外
2) 使用 delete 表达式作为删除器。必须提供有效的 delete 表达式,即 delete ptr 必须格式良好,具有明确定义的行为且不抛出任何异常。等效于 shared_ptr<T>(ptr).swap(*this);
3) 使用指定的删除器 d 作为删除器。Deleter 必须可用于类型 T,即 d(ptr) 必须格式良好,具有明确定义的行为且不抛出任何异常。Deleter 必须是 可复制构造的(CopyConstructible),其复制构造函数和析构函数不得抛出异常。等效于 shared_ptr<T>(ptr, d).swap(*this);
4)(3) 相同,但另外使用 alloc 的副本为内部使用的数据分配内存。Alloc 必须是 分配器(Allocator)。复制构造函数和析构函数不得抛出异常。等效于 shared_ptr<T>(ptr, d, alloc).swap(*this);

目录

[编辑] 参数

ptr - 指向要获取所有权的对象指针
d - 用于删除对象的删除器
alloc - 用于内部分配的分配器

[编辑] 返回值

(无)

[编辑] 异常

2) 如果无法获取所需的额外内存,则抛出 std::bad_alloc。对于其他错误,可能会抛出实现定义的异常。如果发生异常,将调用 delete ptr
3,4) 如果无法获取所需的额外内存,则抛出 std::bad_alloc。对于其他错误,可能会抛出实现定义的异常。如果发生异常,将调用 d(ptr)

[编辑] 示例

#include <iostream>
#include <memory>
 
struct Foo
{
    Foo(int n = 0) noexcept : bar(n)
    {
        std::cout << "Foo::Foo(), bar = " << bar << " @ " << this << '\n';
    }
    ~Foo()
    {
        std::cout << "Foo::~Foo(), bar = " << bar << " @ " << this << '\n';
    }
    int getBar() const noexcept { return bar; }
private:
    int bar;
};
 
int main()
{
    std::cout << "1) unique ownership\n";
    {
        std::shared_ptr<Foo> sptr = std::make_shared<Foo>(100);
 
        std::cout << "Foo::bar = " << sptr->getBar() << ", use_count() = "
                  << sptr.use_count() << '\n';
 
        // Reset the shared_ptr without handing it a fresh instance of Foo.
        // The old instance will be destroyed after this call.
        std::cout << "call sptr.reset()...\n";
        sptr.reset(); // calls Foo's destructor here
        std::cout << "After reset(): use_count() = " << sptr.use_count()
                  << ", sptr = " << sptr << '\n';
    }   // No call to Foo's destructor, it was done earlier in reset().
 
    std::cout << "\n2) unique ownership\n";
    {
        std::shared_ptr<Foo> sptr = std::make_shared<Foo>(200);
 
        std::cout << "Foo::bar = " << sptr->getBar() << ", use_count() = "
                  << sptr.use_count() << '\n';
 
        // Reset the shared_ptr, hand it a fresh instance of Foo.
        // The old instance will be destroyed after this call.
        std::cout << "call sptr.reset()...\n";
        sptr.reset(new Foo{222});
        std::cout << "After reset(): use_count() = " << sptr.use_count()
                  << ", sptr = " << sptr << "\nLeaving the scope...\n";
    }   // Calls Foo's destructor.
 
    std::cout << "\n3) multiple ownership\n";
    {
        std::shared_ptr<Foo> sptr1 = std::make_shared<Foo>(300);
        std::shared_ptr<Foo> sptr2 = sptr1;
        std::shared_ptr<Foo> sptr3 = sptr2;
 
        std::cout << "Foo::bar = " << sptr1->getBar() << ", use_count() = "
                  << sptr1.use_count() << '\n';
 
        // Reset the shared_ptr sptr1, hand it a fresh instance of Foo.
        // The old instance will stay shared between sptr2 and sptr3.
        std::cout << "call sptr1.reset()...\n";
        sptr1.reset(new Foo{333});
 
        std::cout << "After reset():\n"
                  << "sptr1.use_count() = " << sptr1.use_count()
                  << ", sptr1 @ " << sptr1 << '\n'
                  << "sptr2.use_count() = " << sptr2.use_count()
                  << ", sptr2 @ " << sptr2 << '\n'
                  << "sptr3.use_count() = " << sptr3.use_count()
                  << ", sptr3 @ " << sptr3 << '\n'
                  << "Leaving the scope...\n";
    }   // Calls two destructors of: 1) Foo owned by sptr1,
        // 2) Foo shared between sptr2/sptr3.
}

可能的输出

1) unique ownership
Foo::Foo(), bar = 100 @ 0x23c5040
Foo::bar = 100, use_count() = 1
call sptr.reset()...
Foo::~Foo(), bar = 100 @ 0x23c5040
After reset(): use_count() = 0, sptr = 0
 
2) unique ownership
Foo::Foo(), bar = 200 @ 0x23c5040
Foo::bar = 200, use_count() = 1
call sptr.reset()...
Foo::Foo(), bar = 222 @ 0x23c5050
Foo::~Foo(), bar = 200 @ 0x23c5040
After reset(): use_count() = 1, sptr = 0x23c5050
Leaving the scope...
Foo::~Foo(), bar = 222 @ 0x23c5050
 
3) multiple ownership
Foo::Foo(), bar = 300 @ 0x23c5080
Foo::bar = 300, use_count() = 3
call sptr1.reset()...
Foo::Foo(), bar = 333 @ 0x23c5050
After reset():
sptr1.use_count() = 1, sptr1 @ 0x23c5050
sptr2.use_count() = 2, sptr2 @ 0x23c5080
sptr3.use_count() = 2, sptr3 @ 0x23c5080
Leaving the scope...
Foo::~Foo(), bar = 300 @ 0x23c5080
Foo::~Foo(), bar = 333 @ 0x23c5050

[编辑] 参阅

构造新的 shared_ptr
(public member function) [编辑]