std::owner_equal
来自 cppreference.com
定义在头文件 <memory> 中 |
||
struct owner_equal; |
(自 C++26 起) | |
此函数对象提供基于所有者(与基于值相反)的混合类型相等比较,用于 std::weak_ptr 和 std::shared_ptr。比较方式使得两个智能指针仅当它们都为空或它们共享所有权时才视为等效,即使通过 get()
获得的原始指针的值不同(例如,因为它们指向同一个对象内的不同子对象)。
当构建使用 std::shared_ptr 和 std::weak_ptr 作为键的无序关联容器以及 std::owner_hash 时,它是首选的比较谓词,也就是说,std::unordered_map<std::shared_ptr<T>, U, std::owner_hash, std::owner_equal> 或 std::unordered_map<std::weak_ptr<T>, U, std::owner_hash, std::owner_equal>.
3)
std::owner_equal
从参数推断参数类型。内容 |
[编辑] 嵌套类型
嵌套类型 | 定义 |
is_transparent
|
未指定 |
[编辑] 成员函数
operator() |
使用基于所有者的语义比较其参数 (函数) |
std::owner_equal::operator()
template< class T, class U > bool operator()( const std::shared_ptr<T>& lhs, |
(自 C++26 起) | |
template< class T, class U > bool operator()( const std::shared_ptr<T>& lhs, |
(自 C++26 起) | |
template< class T, class U > bool operator()( const std::weak_ptr<T>& lhs, |
(自 C++26 起) | |
template< class T, class U > bool operator()( const std::weak_ptr<T>& lhs, |
(自 C++26 起) | |
使用基于所有者的语义比较 lhs 和 rhs。实际上调用 lhs.owner_equal(rhs).
相等比较是一种等价关系。
lhs 和 rhs 当且仅当它们都为空或共享所有权时才等价。
参数
lhs, rhs | - | 要比较的共享所有权指针 |
返回值
true 如果 lhs 和 rhs 都为空或根据基于所有者的相等比较共享所有权,否则为 false。
[编辑] 备注
功能测试 宏 | 值 | Std | 功能 |
---|---|---|---|
__cpp_lib_smart_ptr_owner_equality |
202306L | (C++26) | 启用在 无序关联容器 中使用 std::shared_ptr 和 std::weak_ptr 作为键 |
[编辑] 另请参阅
(C++26) |
提供共享指针的基于所有者的相等比较 ( std::shared_ptr<T> 的公有成员函数) |
(C++26) |
提供弱指针的基于所有者的相等比较 ( std::weak_ptr<T> 的公有成员函数) |