命名空间
变体
操作

std::shared_ptr<T>::owner_hash

来自 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*)
显式生命周期管理
 
 
std::size_t owner_hash() const noexcept;
(C++26 起)

返回一个未指定的值,使得对于任何对象 other,若 owner_equal(other)true,则 owner_hash() == other.owner_hash() 也为 true

此哈希用于使共享指针和弱指针可用作无序关联容器中的键,通常通过 std::owner_hash 实现。

目录

[编辑] 返回值

对于任何共享同一所有权的 std::shared_ptrstd::weak_ptr 对象,该值是相同的。

[编辑] 注意

特性测试 标准 特性
__cpp_lib_smart_ptr_owner_equality 202306L (C++26) 启用 std::shared_ptr无序关联容器中用作键

[编辑] 示例

[编辑] 参阅

为共享指针和弱指针提供基于所有者的哈希
(类) [编辑]