std::variant<Types...>::swap
来自 cppreference.com
void swap( variant& rhs ) noexcept(/* see below */); |
(自 C++17 起) (自 C++20 起为 constexpr) |
|
交换两个 variant
对象。
- 如果 *this 和 rhs 都因异常而无效,则不执行任何操作。
- 否则,如果 *this 和 rhs 都保存相同的备选方案,则调用 swap(*std::get_if<i>(this), *std::get_if<i>(std::addressof(rhs))),其中 i 为
index()
。如果抛出异常,则值的 状态取决于调用的swap
函数的异常安全性。 - 否则,交换 rhs 和 *this 的值。如果抛出异常,则 *this 和 rhs 的状态取决于变体的移动构造函数的异常安全性。
程序格式不正确,除非类型 T_i
为 可交换的,并且 std::is_move_constructible_v<T_i> 对 Types...
中的所有 T_i
都是 true。
内容 |
[编辑] 参数
rhs | - | 要与其交换的 variant 对象 |
[编辑] 返回值
(无)
[编辑] 异常
如果 this->index() == rhs.index(),则可能抛出 swap(*std::get_if<i>(this), *std::get_if<i>(std::addressof(rhs))) 抛出的任何异常,其中 i 为 index()
。
否则,可能会抛出 *this 和 rhs 当前保存的备选方案的移动构造函数抛出的任何异常。
noexcept 规范:
noexcept(((std::is_nothrow_move_constructible_v<Types> &&
std::is_nothrow_swappable_v<Types>) && ...))
std::is_nothrow_swappable_v<Types>) && ...))
[编辑] 注释
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__cpp_lib_variant |
202106L | (C++20) (DR) |
完全 constexpr std::variant |
[编辑] 示例
运行此代码
#include <iostream> #include <string> #include <variant> int main() { std::variant<int, std::string> v1{2}, v2{"abc"}; std::visit([](auto&& x) { std::cout << x << ' '; }, v1); std::visit([](auto&& x) { std::cout << x << '\n'; }, v2); v1.swap(v2); std::visit([](auto&& x) { std::cout << x << ' '; }, v1); std::visit([](auto&& x) { std::cout << x << '\n'; }, v2); }
输出
2 abc abc 2
[编辑] 缺陷报告
以下行为更改的缺陷报告被追溯应用于以前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
P2231R1 | C++20 | swap 不是 constexpr,而 C++20 中的非平凡析构函数可以是 constexpr |
使用 constexpr 关键字声明 |