命名空间
变体
操作

operator==, <=>(std::reference_wrapper)

来自 cppreference.com
 
 
实用程序库
语言支持
类型支持 (基本类型, 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++17)(C++23)
恒等函数对象
(C++20)
透明运算符包装器
(C++14)
(C++14)
(C++14)
(C++14)  
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)

旧绑定器和适配器
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)  
(直到 C++17*)
(直到 C++17*)(直到 C++17*)(直到 C++17*)(直到 C++17*)
(直到 C++20*)
(直到 C++20*)
(直到 C++17*)(直到 C++17*)
(直到 C++17*)(直到 C++17*)

(直到 C++17*)
(直到 C++17*)(直到 C++17*)(直到 C++17*)(直到 C++17*)
(直到 C++20*)
(直到 C++20*)
 
 
friend constexpr bool
    operator==( reference_wrapper lhs, reference_wrapper rhs );
(1) (自 C++26)
friend constexpr bool
    operator==( reference_wrapper lhs, reference_wrapper<const T> rhs );
(2) (自 C++26)
friend constexpr bool
    operator==( reference_wrapper lhs, const T& ref );
(3) (自 C++26)
friend constexpr auto
    operator<=>( reference_wrapper lhs, reference_wrapper rhs );
(4) (自 C++26)
friend constexpr auto
    operator<=>( reference_wrapper lhs, reference_wrapper<const T> rhs );
(5) (自 C++26)
friend constexpr auto
    operator<=>( reference_wrapper lhs, const T& ref );
(6) (自 C++26)

reference_wrapper 对象执行比较操作。

1,2) 比较两个 reference_wrapper 对象。当且仅当 lhs.get()rhs.get() 相等时,这两个对象相等。
  • 当且仅当 lhs.get() == rhs.get() 是良构的并且其结果可转换为 bool 时,这两个重载才会参与重载解析。
  • 当且仅当 std::is_const_v<T>false 时,重载 (2) 才会参与重载解析。
3) 比较 reference_wrapper 对象与引用。当且仅当 lhs.get() 等于 ref 时,参数相等。
  • 当且仅当 lhs.get() == ref 是良构的并且其结果可转换为 bool 时,重载 (3) 才会参与重载解析。
4) 比较两个 reference_wrapper 对象,如同使用 synth-three-way(lhs.get(), rhs.get()) 一样。返回值类型为 synth-three-way-result<T>。只有返回值类型格式良好时,这个重载才会参与重载解析。
5) 比较两个 reference_wrapper 对象,如同使用 synth-three-way(lhs.get(), rhs.get()) 一样。返回值类型为 synth-three-way-result<T>。只有 std::is_const_v<T>false 且返回值类型格式良好时,这个重载才会参与重载解析。
6) 比较 reference_wrapper 对象与引用,如同使用 synth-three-way(lhs.get(), ref) 一样。返回值类型为 synth-three-way-result<T>。只有返回值类型格式良好时,这个重载才会参与重载解析。

<<=>>=!= 运算符是由 operator<=>operator== 分别 合成 的。

内容

[编辑] 参数

lhs, rhs - 要比较的 reference_wrapper 对象
ref - 要与 reference_wrapper 对象进行比较的引用

[编辑] 返回值

1,2) lhs.get() == rhs.get().
3) lhs.get() == ref.
4,5) synth-three-way(lhs.get(), rhs.get()).
6) synth-three-way(lhs.get(), ref).

[编辑] 异常

在比较过程中抛出什么异常,以及什么时候抛出异常。

[编辑] 备注

(4-6) 的返回值类型是通过 return 语句推断 得出的,以避免在使用 std::reference_wrapper<T> 时,当 synth-three-way-result<T> 格式不正确时出现硬错误。

特性测试 Std 特性
__cpp_lib_reference_wrapper 202403L (C++26) std::reference_wrapper 的比较操作

[编辑] 示例