命名空间
变体
操作

std::owner_less

来自 cppreference.com
< cpp‎ | memory
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三路比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
动态内存管理
未初始化内存算法
受约束的未初始化内存算法
分配器
垃圾回收支持
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)



 
在头文件 <memory> 中定义
template<>
struct owner_less<void>;
(自 C++17 起)

std::owner_less<void>std::owner_less 的特化,参数类型推断得出。

内容

[编辑] 嵌套类型

嵌套类型 定义
is_transparent 未指定

[编辑] 成员函数

operator()
使用基于所有者的语义比较其参数
(函数)

std::owner_less<void>::operator()

template< class T, class U >

bool operator()( const std::shared_ptr<T>& lhs,

                 const std::shared_ptr<U>& rhs ) const noexcept;
(自 C++17 起)
template< class T, class U >

bool operator()( const std::shared_ptr<T>& lhs,

                 const std::weak_ptr<U>& rhs ) const noexcept;
(自 C++17 起)
template< class T, class U >

bool operator()( const std::weak_ptr<T>& lhs,

                 const std::shared_ptr<U>& rhs ) const noexcept;
(自 C++17 起)
template< class T, class U >

bool operator()( const std::weak_ptr<T>& lhs,

                 const std::weak_ptr<U>& rhs ) const noexcept;
(自 C++17 起)

使用基于所有者的语义比较 lhsrhs。有效地调用 lhs.owner_before(rhs).

排序是严格的弱排序关系。

lhsrhs 仅当它们都为空或共享所有权时才等效。

参数

lhs, rhs - 要比较的共享所有权指针

返回值

true 如果 lhs 根据基于所有者的排序小于 rhs

[编辑] 说明

功能测试 Std 功能
__cpp_lib_transparent_operators 201510L (C++17) 透明 std::owner_less (std::owner_less<void>)

[编辑] 另请参阅

提供共享指针的基于所有者的排序
(std::shared_ptr<T> 的公共成员函数) [编辑]
提供基于所有者的弱指针排序
(std::weak_ptr<T> 的公共成员函数) [编辑]