命名空间
变体
操作

std::swap(std::variant)

来自 cppreference.com
< cpp‎ | utility‎ | variant
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库特性测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三方比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (在 C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
 
在头文件 <variant> 中定义
template< class... Types >

void swap( std::variant<Types...>& lhs,

           std::variant<Types...>& rhs ) noexcept(/* see below */);
(自 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 交换
(公共成员函数) [编辑]