std::swap(std::optional)
来自 cppreference.com
定义在头文件 <optional> 中 |
||
template< class T > void swap( std::optional<T>& lhs, |
(自 C++17 起) (自 C++20 起为 constexpr) |
|
为 std::optional 重载 std::swap 算法。将 lhs 的状态与 rhs 的状态交换。实际上调用 lhs.swap(rhs).
此重载仅当 std::is_move_constructible_v<T> 和 std::is_swappable_v<T> 同时为 true 时才会参与重载解析。
内容 |
[编辑] 参数
lhs, rhs | - | 要交换状态的 optional 对象 |
[编辑] 返回值
(无)
[编辑] 异常
noexcept 规范:
noexcept(noexcept(lhs.swap(rhs)))
[编辑] 注释
功能测试 宏 | 值 | Std | 功能 |
---|---|---|---|
__cpp_lib_optional |
202106L | (C++20) (DR20) |
完全 constexpr |
[编辑] 示例
运行此代码
#include <iostream> #include <optional> #include <string> int main() { std::optional<std::string> a{"██████"}, b{"▒▒▒▒▒▒"}; auto print = [&](auto const& s) { std::cout << s << "\t" "a = " << a.value_or("(null)") << " " "b = " << b.value_or("(null)") << '\n'; }; print("Initially:"); std::swap(a, b); print("swap(a, b):"); a.reset(); print("\n""a.reset():"); std::swap(a, b); print("swap(a, b):"); }
输出
Initially: a = ██████ b = ▒▒▒▒▒▒ swap(a, b): a = ▒▒▒▒▒▒ b = ██████ a.reset(): a = (null) b = ██████ swap(a, b): a = ██████ b = (null)
[编辑] 缺陷报告
以下更改行为的缺陷报告已追溯应用于以前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
P2231R1 | C++20 | swap 不是 constexpr,而所需操作可以在 C++20 中为 constexpr |
已设置为 constexpr |
[编辑] 另请参阅
交换内容 (公有成员函数) |