swap(std::expected)
来自 cppreference.com
friend constexpr void swap( expected& lhs, expected& rhs ) noexcept(/*见下文*/); |
(自 C++23 起) | |
重载了 std::swap 算法,用于 std::expected。将 lhs 的状态与 rhs 的状态交换。实际上调用了 lhs.swap(rhs).
只有当 lhs.swap(rhs) 有效时,此重载才参与重载解析。
此函数对普通的 非限定 或 限定查找 是不可见的,并且只有当 std::expected<T, E> 是参数的关联类时,才能通过 依赖于参数的查找 找到它。
内容 |
[编辑] 参数
lhs, rhs | - | 要交换状态的 expected 对象 |
[编辑] 返回值
(无)
[编辑] 异常
noexcept 规范:
noexcept(noexcept(lhs.swap(rhs)))
[编辑] 示例
运行此代码
#include <expected> #include <iostream> #include <string> using Ex = std::expected<std::string, int>; void show(const Ex& ex1, const Ex& ex2) { for (int i{}; i < 2; ++i) { std::cout << (i ? "ex2" : "ex1"); if (const Ex& ex = (i ? ex2 : ex1); ex.has_value()) std::cout << ".has_value() = " << *ex << '\n'; else std::cout << ".error() = " << ex.error() << '\n'; } } int main() { Ex ex1("\N{DOG FACE}"); Ex ex2{"\N{BONE}"}; show(ex1, ex2); swap(ex1, ex2); std::cout << "swap(ex1, ex2);\n"; show(ex1, ex2); std::cout << '\n'; ex2 = std::unexpected(13); show(ex1, ex2); swap(ex1, ex2); std::cout << "swap(ex1, ex2);\n"; show(ex1, ex2); std::cout << '\n'; ex2 = std::unexpected(19937); show(ex1, ex2); swap(ex1, ex2); std::cout << "swap(ex1, ex2);\n"; show(ex1, ex2); std::cout << '\n'; }
输出
ex1.has_value() = 🐶 ex2.has_value() = 🦴 swap(ex1, ex2); ex1.has_value() = 🦴 ex2.has_value() = 🐶 ex1.has_value() = 🦴 ex2.error() = 13 swap(ex1, ex2); ex1.error() = 13 ex2.has_value() = 🦴 ex1.error() = 13 ex2.error() = 19937 swap(ex1, ex2); ex1.error() = 19937 ex2.error() = 13
[编辑] 另请参阅
交换内容 (公有成员函数) |