std::weak_ptr<T>::owner_equal
来自 cppreference.com
template< class Y > bool owner_equal( const std::weak_ptr<Y>& other ) const noexcept; |
(1) | (自 C++26 起) |
template< class Y > bool owner_equal( const std::shared_ptr<Y>& other ) const noexcept; |
(2) | (自 C++26 起) |
检查此 weak_ptr
和 other 是否共享所有权或都为空。比较方式是,只有当两个智能指针都为空或都拥有同一个对象时,它们才被认为是等效的,即使通过 get() 获取的指针的值不同(例如,因为它们指向同一个对象内的不同子对象)。
成员函数 owner_equal
是一个等价关系,因此,如果 !owner_before(other) && !other.owner_before(*this) 为 true,则当且仅当 owner_equal(other) 为 true 时成立。
此排序用于使共享指针和弱指针能够用作无序关联容器中的键,通常通过 std::owner_equal 实现。
内容 |
[编辑] 参数
other | - | 要比较的 std::shared_ptr 或 std::weak_ptr |
[编辑] 返回值
如果 *this 和 other 共享所有权或都为空,则返回 true。否则,返回 false。
[编辑] 备注
功能测试 宏 | 值 | Std | 功能 |
---|---|---|---|
__cpp_lib_smart_ptr_owner_equality |
202306L | (C++26) | 启用将 std::weak_ptr 用作 无序关联容器 中的键 |
[编辑] 示例
本节内容不完整 原因:示例 |
[编辑] 另请参阅
(C++26) |
提供共享指针和弱指针的混合类型基于所有者的相等比较 (类) |