std::swap(std::variant)
来自 cppreference.com
在头文件 <variant> 中定义 |
||
template< class... Types > void swap( std::variant<Types...>& lhs, |
(自 C++17 起) (自 C++20 起为 constexpr) |
|
重载了 std::swap 算法,用于 std::variant。实际上调用了 lhs.swap(rhs).
此重载仅在 std::is_move_constructible_v<T_i> 和 std::is_swappable_v<T_i> 对 Types...
中的所有 T_i
都是 true 时参与重载解析。
内容 |
[编辑] 参数
lhs, rhs | - | 要交换其值的 variant 对象 |
[编辑] 返回值
(无)
[编辑] 异常
noexcept 规范:
noexcept(noexcept(lhs.swap(rhs)))
[编辑] 注释
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__cpp_lib_variant |
202106L | (C++20) (DR) |
完全 constexpr std::variant |
[编辑] 示例
运行此代码
#include <iostream> #include <string> #include <variant> void print(auto const& v, char term = '\n') { std::visit([](auto&& o) { std::cout << o; }, v); std::cout << term; } int main() { std::variant<int, std::string> v1{123}, v2{"XYZ"}; print(v1, ' '); print(v2); std::swap(v1, v2); print(v1, ' '); print(v2); std::variant<double, std::string> v3{3.14}; // std::swap(v1, v3); // ERROR: ~ inconsistent parameter packs }
输出
123 XYZ XYZ 123
[编辑] 缺陷报告
以下更改行为的缺陷报告被追溯应用于以前发布的 C++ 标准。
DR | 应用于 | 发布的行为 | 正确的行为 |
---|---|---|---|
P2231R1 | C++20 | swap 不是 constexpr,而必需的操作在 C++20 中可以是 constexpr |
已改为 constexpr |
[编辑] 另请参阅
与另一个 variant 交换(公共成员函数) |