命名空间
变体
操作

operator==(std::expected)

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

 
 
主模板
template< class T2, class E2 >

    requires (!std::is_void_v<T2>)
friend constexpr bool operator==( const expected& x,

                                  const std::expected<T2, E2>& y );
(1) (自 C++23 起)
template< class T2 >
friend constexpr bool operator==( const expected& x, const T2& val );
(2) (自 C++23 起)
template< class E2 >

friend constexpr bool operator==( const expected& x,

                                  const std::unexpected<E2>& e );
(3) (自 C++23 起)
void 部分特化
template< class T2, class E2 >

  requires std::is_void_v<T2>
friend constexpr bool operator==( const expected& x,

                                  const std::expected<T2, E2>& y );
(4) (自 C++23 起)
template< class E2 >

friend constexpr bool operator==( const expected& x,

                                  const std::unexpected<E2>& e );
(5) (自 C++23 起)

expected 对象执行比较操作。

1) 比较两个 expected 对象。当且仅当 xy 都包含相等的预期值,或者都包含相等的意外值时,这两个对象相等。
如果以下任何表达式不合法,或者其结果不能转换为 bool,则程序不合法
  • *x == *y
  • x.error() == y.error()
2) 比较 expected 对象与预期值。当且仅当 x 包含预期值,并且预期值等于 val 时,这两个对象相等。
如果表达式 *x == val 不合法,或者其结果不能转换为 bool,则程序不合法。
3) 比较 expected 对象与意外值。当且仅当 x 包含意外值,并且意外值等于 e.error() 时,这两个对象相等。
如果表达式 x.error() == e.error() 不合法,或者其结果不能转换为 bool,则程序不合法。
4) 比较两个 expected 对象。当且仅当 xy 都表示预期值,或者都包含相等的意外值时,这两个对象相等。
如果表达式 x.error() == y.error() 不合法,或者其结果不能转换为 bool,则程序不合法。
5) 比较 expected 对象与意外值。当且仅当 x 包含意外值,并且意外值等于 e.error() 时,这两个对象相等。
如果表达式 x.error() == e.error() 不合法,或者其结果不能转换为 bool,则程序不合法。

这些函数对普通的 非限定限定查找 不可見,只有在 参数依赖查找 时,当 std::expected<T, E> 是参数的关联类时,才能找到这些函数。

!= 运算符是从 operator== 合成 的。

内容

[编辑] 参数

x, y - 要比较的 expected 对象
val - 要与 x 中包含的预期值进行比较的值
e - 要与 x 中包含的意外值进行比较的值

[编辑] 返回值

1) x.has_value() ? (y.has_value() && *x == *y) : (!y.has_value() && x.error() == y.error())
2) x.has_value() && static_cast<bool>(*x == val)
3) !x.has_value() && static_cast<bool>(x.error() == e.error())
4) x.has_value() ? y.has_value() : (!y.has_value() && x.error() == y.error())
5) !x.has_value() && static_cast<bool>(x.error() == e.error())

[edit] 异常

比较时抛出异常及其内容。

[edit] 示例

#include <expected>
#include <iostream>
#include <string_view>
using namespace std::string_view_literals;
 
int main()
{
    auto x1{"\N{GREEN HEART}"sv};
    auto x2{"\N{CROSS MARK}"sv};
    std::expected<std::string_view, int> e1{x1}, e2{x1}, e3{x2};
    std::unexpected u1{13};
 
    std::cout << "Overload (1):\n"
              << e1.value() << (e1 == e2 ? " == " : " != ") << *e2 << '\n'
              << e1.value() << (e1 != e3 ? " != " : " == ") << *e3 << "\n\n";
 
    std::cout << "Overload (2):\n"
              << *e1 << (e1 == x1 ? " == " : " != ") << x1 << '\n'
              << *e1 << (e1 != x2 ? " != " : " == ") << x2 << "\n\n";
 
    std::cout << "Overload (3):\n"
              << e1.value() << (e1 == u1 ? " == " : " != ") << u1.error() << '\n';
    e1 = std::unexpected{13};
    std::cout << e1.error() << (e1 == u1 ? " == " : " != ") << u1.error() << '\n';
    e1 = std::unexpected{31};
    std::cout << e1.error() << (e1 != u1 ? " != " : " == ") << u1.error() << '\n';
}

输出

Overload (1):
💚 == 💚
💚 != ❌
 
Overload (2):
💚 == 💚
💚 != ❌
 
Overload (3):
💚 != 13
13 == 13
31 != 13

[edit] 另请参阅

表示为意外值
(类模板) [edit]