命名空间
变体
操作

operator==, !=, <, <=, >, >=, <=>(std::optional)

来自 cppreference.com
< cpp‎ | utility‎ | optional
 
 
实用程序库
语言支持
类型支持 (基本类型,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)

 
 
在头文件 <optional> 中定义
比较两个 optional 对象
template< class T, class U >
constexpr bool operator==( const optional<T>& lhs, const optional<U>& rhs );
(1) (自 C++17 起)
template< class T, class U >
constexpr bool operator!=( const optional<T>& lhs, const optional<U>& rhs );
(2) (自 C++17 起)
template< class T, class U >
constexpr bool operator<( const optional<T>& lhs, const optional<U>& rhs );
(3) (自 C++17 起)
template< class T, class U >
constexpr bool operator<=( const optional<T>& lhs, const optional<U>& rhs );
(4) (自 C++17 起)
template< class T, class U >
constexpr bool operator>( const optional<T>& lhs, const optional<U>& rhs );
(5) (自 C++17 起)
template< class T, class U >
constexpr bool operator>=( const optional<T>& lhs, const optional<U>& rhs );
(6) (自 C++17 起)
template< class T, std::three_way_comparable_with<T> U >

constexpr std::compare_three_way_result_t<T, U>

    operator<=>( const optional<T>& lhs, const optional<U>& rhs );
(7) (自 C++20 起)
比较 optional 对象和 nullopt
template< class T >
constexpr bool operator==( const optional<T>& opt, std::nullopt_t ) noexcept;
(8) (自 C++17 起)
template< class T >
constexpr bool operator==( std::nullopt_t, const optional<T>& opt ) noexcept;
(9) (自 C++17 起)
(直到 C++20)
template< class T >
constexpr bool operator!=( const optional<T>& opt, std::nullopt_t ) noexcept;
(10) (自 C++17 起)
(直到 C++20)
template< class T >
constexpr bool operator!=( std::nullopt_t, const optional<T>& opt ) noexcept;
(11) (自 C++17 起)
(直到 C++20)
template< class T >
constexpr bool operator<( const optional<T>& opt, std::nullopt_t ) noexcept;
(12) (自 C++17 起)
(直到 C++20)
template< class T >
constexpr bool operator<( std::nullopt_t, const optional<T>& opt ) noexcept;
(13) (自 C++17 起)
(直到 C++20)
template< class T >
constexpr bool operator<=( const optional<T>& opt, std::nullopt_t ) noexcept;
(14) (自 C++17 起)
(直到 C++20)
template< class T >
constexpr bool operator<=( std::nullopt_t, const optional<T>& opt ) noexcept;
(15) (自 C++17 起)
(直到 C++20)
template< class T >
constexpr bool operator>( const optional<T>& opt, std::nullopt_t ) noexcept;
(16) (自 C++17 起)
(直到 C++20)
template< class T >
constexpr bool operator>( std::nullopt_t, const optional<T>& opt ) noexcept;
(17) (自 C++17 起)
(直到 C++20)
template< class T >
constexpr bool operator>=( const optional<T>& opt, std::nullopt_t ) noexcept;
(18) (自 C++17 起)
(直到 C++20)
template< class T >
constexpr bool operator>=( std::nullopt_t, const optional<T>& opt ) noexcept;
(19) (自 C++17 起)
(直到 C++20)
template< class T >

constexpr std::strong_ordering

    operator<=>( const optional<T>& opt, std::nullopt_t ) noexcept;
(20) (自 C++20 起)
将一个 optional 对象与一个值进行比较
template< class T, class U >
constexpr bool operator==( const optional<T>& opt, const U& value );
(21) (自 C++17 起)
template< class T, class U >
constexpr bool operator==( const T& value, const optional<U>& opt );
(22) (自 C++17 起)
template< class T, class U >
constexpr bool operator!=( const optional<T>& opt, const U& value );
(23) (自 C++17 起)
template< class T, class U >
constexpr bool operator!=( const T& value, const optional<U>& opt );
(24) (自 C++17 起)
template< class T, class U >
constexpr bool operator<( const optional<T>& opt, const U& value );
(25) (自 C++17 起)
template< class T, class U >
constexpr bool operator<( const T& value, const optional<U>& opt );
(26) (自 C++17 起)
template< class T, class U >
constexpr bool operator<=( const optional<T>& opt, const U& value );
(27) (自 C++17 起)
template< class T, class U >
constexpr bool operator<=( const T& value, const optional<U>& opt );
(28) (自 C++17 起)
template< class T, class U >
constexpr bool operator>( const optional<T>& opt, const U& value );
(29) (自 C++17 起)
template< class T, class U >
constexpr bool operator>( const T& value, const optional<U>& opt );
(30) (自 C++17 起)
template< class T, class U >
constexpr bool operator>=( const optional<T>& opt, const U& value );
(31) (自 C++17 起)
template< class T, class U >
constexpr bool operator>=( const T& value, const optional<U>& opt );
(32) (自 C++17 起)
template< class T, std::three_way_comparable_with<T> U >

constexpr std::compare_three_way_result_t<T, U>

    operator<=>( const optional<T>& opt, const U& value );
(33) (自 C++20 起)

optional 对象执行比较操作。

1-7) 比较两个 optional 对象, lhsrhs。 仅当 lhsrhs 都包含值时,才会比较包含的值(使用 T 的相应运算符)。 否则,
  • lhs 被认为等于 rhs 当且仅当 lhsrhs 都没有包含值。
  • lhs 被认为小于 rhs 当且仅当 rhs 包含值,而 lhs 不包含值。
8-20)opt 与一个 nullopt 进行比较。 等同于与不包含值的 optional 进行比较时的 (1-6)

<<=>>=!= 运算符分别从 operator<=>operator==合成

(自 C++20 起)
21-33)opt 与一个 value 进行比较。 仅当 opt 包含值时,才会比较这些值(使用 T 的相应运算符)。 否则,opt 被认为小于 value。 如果 *optvalue 之间的相应双向比较表达式不合法,或者其结果不可转换为 bool,则程序不合法。

内容

[edit] 参数

lhs, rhs, opt - 要比较的 optional 对象
value - 要与包含的值进行比较的值

[edit] 返回值

1) 如果 bool(lhs) != bool(rhs),则返回 false

否则,如果 bool(lhs) == false(因此 bool(rhs) == false 也是如此),则返回 true

否则,返回 *lhs == *rhs.
2) 如果 bool(lhs) != bool(rhs),则返回 true

否则,如果 bool(lhs) == false(因此 bool(rhs) == false 也是如此),则返回 false

否则,返回 *lhs != *rhs.
3) 如果 bool(rhs) == false,则返回 false

否则,如果 bool(lhs) == false,则返回 true

否则返回 *lhs < *rhs.
4) 如果 bool(lhs) == false,则返回 true

否则,如果 bool(rhs) == false,则返回 false

否则返回 *lhs <= *rhs.
5) 如果 bool(lhs) == false,则返回 false

否则,如果 bool(rhs) == false,则返回 true

否则返回 *lhs > *rhs.
6) 如果 bool(rhs) == false,则返回 true

否则,如果 bool(lhs) == false,则返回 false

否则返回 *lhs >= *rhs.
7) 如果 bool(lhs) && bool(rhs)true,则返回 *x <=> *y.
否则,返回 bool(lhs) <=> bool(rhs).
8,9) 返回 !opt.
10,11) 返回 bool(opt).
12) 返回 false.
13) 返回 bool(opt).
14) 返回 !opt.
15) 返回 true.
16) 返回 bool(opt).
17) 返回 false.
18) 返回 true.
19) 返回 !opt.
20) 返回 bool(opt) <=> false.
21) 返回 bool(opt) ? *opt == value : false.
22) 返回 bool(opt) ? value == *opt : false.
23) 返回 bool(opt) ? *opt != value : true.
24) 返回 bool(opt) ? value != *opt : true.
25) 返回 bool(opt) ? *opt < value  : true.
26) 返回 bool(opt) ? value < *opt  : false.
27) 返回 bool(opt) ? *opt <= value : true.
28) 返回 bool(opt) ? value <= *opt : false.
29) 返回 bool(opt) ? *opt > value  : false.
30) 返回 bool(opt) ? value > *opt  : true.
31) 返回 bool(opt) ? *opt >= value : false.
32) 返回 bool(opt) ? value >= *opt : true.
33) 返回 bool(opt) ? *opt <=> value : std::strong_ordering::less.

[edit] 异常

1-7) 可能会抛出实现定义的异常。
21-33) 在比较抛出异常时,抛出异常。

[edit] 缺陷报告

以下行为变更缺陷报告被追溯应用于以前发布的 C++ 标准。

DR 应用于 已发布的行为 正确的行为
LWG 2945 C++17 与 T 比较的模板参数顺序不一致 已统一