operator==(std::expected)
来自 cppreference.com
主模板 |
||
template< class T2, class E2 > requires (!std::is_void_v<T2>) |
(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, |
(3) | (自 C++23 起) |
void 部分特化 |
||
template< class T2, class E2 > requires std::is_void_v<T2> |
(4) | (自 C++23 起) |
template< class E2 > friend constexpr bool operator==( const expected& x, |
(5) | (自 C++23 起) |
对 expected
对象执行比较操作。
1) 比较两个
expected
对象。当且仅当 x 和 y 都包含相等的预期值,或者都包含相等的意外值时,这两个对象相等。 如果以下任何表达式不合法,或者其结果不能转换为 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
对象。当且仅当 x 和 y 都表示预期值,或者都包含相等的意外值时,这两个对象相等。 如果表达式 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] 另请参阅
(C++23) |
表示为意外值 (类模板) |