命名空间
变体
操作

std::weak_ptr<T>::reset

来自 cppreference.cn
< cpp‎ | 内存‎ | weak 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;
(C++11 起)

释放对所管理对象的引用。调用后,*this 不管理任何对象。

目录

[编辑] 参数

(无)

[编辑] 返回值

(无)

[编辑] 示例

#include <iostream>
#include <memory>
 
int main()
{
    auto shared = std::make_shared<int>(), shared2 = shared, shared3 = shared2;
 
    auto weak = std::weak_ptr<int>{shared};
 
    std::cout << std::boolalpha 
              << "shared.use_count(): " << shared.use_count() << '\n'
              << "weak.use_count(): " << weak.use_count() << '\n'
              << "weak.expired(): " << weak.expired() << '\n';
 
    weak.reset();
 
    std::cout << "weak.reset();\n"
              << "shared.use_count(): " << shared.use_count() << '\n'
              << "weak.use_count(): " << weak.use_count() << '\n'
              << "weak.expired(): " << weak.expired() << '\n';
}

输出

shared.use_count(): 3
weak.use_count(): 3
weak.expired(): false
weak.reset();
shared.use_count(): 3
weak.use_count(): 0
weak.expired(): true

[编辑] 参阅

检查引用的对象是否已被删除
(public member function) [编辑]