std::owner_equal
来自cppreference.com
在标头 <memory> 定义
|
||
struct owner_equal; |
(C++26 起) | |
这个函数对象为 std::shared_ptr 和 std::weak_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 | - | 要比较的共享所有权指针 |
返回值
当 lhs 和 rhs 都为空,或由基于所有者的相等比较确定为共享所有权时返回 true,否则返回 false。
注解
功能特性测试宏 | 值 | 标准 | 功能特性 |
---|---|---|---|
__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> 的公开成员函数) |