std::owner_less
来自 cppreference.com
定义在头文件 <memory> 中 |
||
(1) | ||
template< class T > struct owner_less; /* undefined */ |
(自 C++11) (直到 C++17) |
|
template< class T = void > struct owner_less; /* undefined */ |
(自 C++17) | |
template< class T > struct owner_less<std::shared_ptr<T>>; |
(2) | (自 C++11) |
template< class T > struct owner_less<std::weak_ptr<T>>; |
(3) | (自 C++11) |
template<> struct owner_less<void>; |
(4) | (自 C++17) |
此函数对象提供了基于所有者的(与基于值的相反)混合类型的 std::weak_ptr 和 std::shared_ptr 的排序。排序的方式是,两个智能指针只有在它们都为空或共享所有权时才被认为相等,即使通过 get()
获取的原始指针的值不同(例如,因为它们指向同一个对象中的不同子对象)。
2) std::shared_ptr 的基于所有者的混合类型排序。
当使用 std::shared_ptr 作为键构建关联容器时,它是首选的比较谓词,也就是说,std::map<std::shared_ptr<T>, U, std::owner_less<std::shared_ptr<T>>>.
3) std::weak_ptr 的基于所有者的混合类型排序。
当使用 std::weak_ptr 作为键构建关联容器时,它是首选的比较谓词,也就是说,std::map<std::weak_ptr<T>, U, std::owner_less<std::weak_ptr<T>>>.
4) void 特化从参数推断参数类型。
默认的 operator< 未为弱指针定义,并且可能错误地认为指向同一个对象的两个共享指针不相等(参见 std::shared_ptr::owner_before)。
特化标准库在
|
(自 C++17) |
嵌套类型
|
(直到 C++20) |
[编辑] 成员函数
operator() |
使用基于所有权的语义比较其参数 (函数) |
std::owner_less::operator()
仅成员特化 (2) |
||
bool operator()( const std::shared_ptr<T>& lhs, const std::shared_ptr<T>& rhs ) const noexcept; |
(自 C++11) | |
仅成员特化 (3) |
||
bool operator()( const std::weak_ptr<T>& lhs, const std::weak_ptr<T>& rhs ) const noexcept; |
(自 C++11) | |
两个模板特化的成员 |
||
bool operator()( const std::shared_ptr<T>& lhs, const std::weak_ptr<T>& rhs ) const noexcept; |
(自 C++11) | |
bool operator()( const std::weak_ptr<T>& lhs, const std::shared_ptr<T>& rhs ) const noexcept; |
(自 C++11) | |
使用基于所有权的语义比较 lhs 和 rhs。实际上调用 lhs.owner_before(rhs)。
排序是严格弱排序关系。
lhs 和 rhs 仅当它们都为空或共享所有权时才等效。
参数
lhs, rhs | - | 要比较的共享所有权指针 |
返回值
true 如果 lhs 小于 rhs 由基于所有权的排序决定,否则为 false。
[编辑] 缺陷报告
以下更改行为的缺陷报告已追溯应用于以前发布的 C++ 标准。
DR | 应用于 | 发布的行为 | 正确的行为 |
---|---|---|---|
LWG 2873 | C++11 | operator() 不需要是 noexcept | 需要是 noexcept |
[编辑] 另请参阅
提供共享指针的基于所有权的排序 ( std::shared_ptr<T> 的公共成员函数) | |
提供弱指针的基于所有权的排序 ( std::weak_ptr<T> 的公共成员函数) |