C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- std::addressof
- std::allocator_traits
- std::default_delete
- std::allocator_arg_t
- std::allocator_arg
- std::weak_ptr
- std::enable_shared_from_this
- std::bad_weak_ptr
- std::unique_ptr
- std::scoped_allocator_adaptor
- std::auto_ptr
- std::destroy_at
- std::destroy
- std::destroy_n
- std::uninitialized_move
- std::uninitialized_value_construct
- std::owner_less
- std::shared_ptr
- std::to_address
- std::assume_aligned
- std::make_obj_using_allocator
- C 内存管理库
- 低层内存管理
- std::pmr::memory_resource
- std::allocator
- std::pointer_traits
- std::uses_allocator
- std::uses_allocator_construction_args
- std::uninitialized_construct_using_allocator
- std::pmr::polymorphic_allocator
- std::pmr::get_default_resource
- std::pmr::set_default_resource
- std::pmr::new_delete_resource
- std::pmr::null_memory_resource
- std::pmr::synchronized_pool_resource
- std::pmr::unsynchronized_pool_resource
- std::pmr::monotonic_buffer_resource
- std::pmr::pool_options
- std::raw_storage_iterator
- std::get_temporary_buffer
- std::return_temporary_buffer
- std::uninitialized_copy
- std::uninitialized_fill
- std::uninitialized_default_construct
- std::uninitialized_copy_n
- std::uninitialized_fill_n
- std::uninitialized_move_n
- std::uninitialized_default_construct_n
- std::uninitialized_value_construct_n
- std::construct_at
- std::align
- 注释
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::owner_less
定义于头文件 <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()
获得的裸指针值相异(例如因为它们指向同一对象中的不同子对象)。
在以 std::shared_ptr 或 std::weak_ptr 为关键建立关联容器,即
std::map<std::shared_ptr<T>, U, std::owner_less<std::shared_ptr<T>>>
或
std::map<std::weak_ptr<T>, U, std::owner_less<std::weak_ptr<T>>> 时,最好使用此类模板。
默认的 operator< 不为弱指针定义,并且可能错误地认为同一对象的二个共享指针不等价(见 shared_ptr::owner_before )。
特化
标准库提供
|
(C++17 起) |
成员类型
|
(C++20 前) |
成员函数
operator() |
用基于拥有者的语义比较其参数 (函数) |
std::owner_less::operator()
所有模板特化的成员 |
||
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 起) | |
仅为 owner_less<shared_ptr<T>> 模板特化的成员 |
||
bool operator()( const std::shared_ptr<T>& lhs, const std::shared_ptr<T>& rhs ) const noexcept; |
(C++11 起) | |
仅为 owner_less<weak_ptr<T>> 模板特化的成员 |
||
bool operator()( const std::weak_ptr<T>& lhs, const std::weak_ptr<T>& rhs ) const noexcept; |
(C++11 起) | |
用基于拥有者的语义比较 lhs
与 rhs
。等效于调用 lhs.owner_before(rhs) 。
顺序是严格弱序关系。
lhs
与 rhs
相等,当且仅当它们均为空或共享所有权。
参数
lhs, rhs | - | 要比较的共享所有权指针 |
返回值
若按基于拥有者的顺序确定 lhs
小于 rhs
,则为 true 。
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
DR | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 2873 | C++11 | operator() 可以不声明为 noexcept | 声明为 noexcept |
参阅
提供基于拥有者的共享指针排序 ( std::shared_ptr<T> 的公开成员函数) | |
提供弱指针的基于拥有者顺序 ( std::weak_ptr<T> 的公开成员函数) |