命名空间
变体
动作

std::visit

来自 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 Visitor, class... Variants >
constexpr /* see below */ visit( Visitor&& vis, Variants&&... vars );
(1) (自 C++17 起)
template< class R, class Visitor, class... Variants >
constexpr R visit( Visitor&& vis, Variants&&... vars );
(2) (自 C++20 起)
template< class... Ts >
auto&& as-variant( std::variant<Ts...>& var );
(3) (仅供说明* )
template< class... Ts >
auto&& as-variant( const std::variant<Ts...>& var );
(4) (仅供说明* )
template< class... Ts >
auto&& as-variant( std::variant<Ts...>&& var );
(5) (仅供说明* )
template< class... Ts >
auto&& as-variant( const std::variant<Ts...>&& var );
(6) (仅供说明* )

将访问者 vis (一个可以接受来自变体的任意类型组合的可调用对象) 应用于变体 vars.

假设 VariantBasesdecltype(as-variant(std::forward<Variants>(vars))... (一个包含 sizeof...(Variants) 个类型的包)

1) 调用 vis ,如同调用以下代码:

INVOKE(std::forward<Visitor>(vis),
       std::get<indices>(std::forward<VariantBases>(vars))...)
,

其中 indicesas-variant(vars).index()....
2) 调用 vis ,如同调用以下代码:

INVOKE<R>(std::forward<Visitor>(vis),
          std::get<indices>(std::forward<VariantBases>(vars))...)
,

其中 indicesas-variant(vars).index()....

只有当 VariantBases 中的每个类型都是有效类型时,这些重载才参与重载解析。如果 INVOKEINVOKE<R>(自 C++20 起) 所表示的表达式无效,或者对于不同的 indicesINVOKEINVOKE<R>(自 C++20 起) 的结果具有不同的类型或值类别,则程序格式错误。

3-6) 仅供说明的 as-variant 函数模板接受一个值,其类型可以 推断std::variant<Ts...> (即 std::variant<Ts...> 或从 std::variant<Ts...> 派生的类型),并返回具有相同 const 限定符和值类别的 std::variant 值。
3,4) 返回 var.
5,6) 返回 std::move(var).

内容

[edit] 参数

vis - 一个接受来自每个变体的每个可能备选的可调用对象
vars - 要传递给访问者的变体列表

[edit] 返回值

1) INVOKE 操作的结果。返回类型是从对 decltype 的结果应用获得的类型。
2) 如果 R 是(可能具有 cv 限定符的)void,则为无;否则为 INVOKE<R> 操作的结果。
3-6)var 转换来的 std::variant 值。

[edit] 异常

如果对于 vars 中的任何变体 vars_ias-variant(vars_i).valueless_by_exception()true,则抛出 std::bad_variant_access

[edit] 复杂度

当变体的数量为零或一时,可调用对象的调用在常数时间内实现,即它不依赖于变体中可以存储的类型的数量。

如果变体的数量大于一,可调用对象的调用没有复杂度要求。

[edit] 注释

n(1 * ... * std::variant_size_v<std::remove_reference_t<VariantBases>>),实现通常会为 std::visit 的每个特化生成一个等效于(可能是多维的)大小为 n 的函数指针数组的表格,这类似于 虚函数 的实现。

实现也可以为 std::visit 生成一个带有 n 个分支的 switch 语句(例如,MSVC STL 实现使用 switch 语句,当 n 不大于 256 时)。

在典型的实现中,vis 的调用时间复杂度可以认为等于在(可能是多维的)数组中访问元素或执行 switch 语句的复杂度。

特性测试 Std 特性
__cpp_lib_variant 202102L (C++17)
(DR)
std::visit 用于从 std::variant 派生的类

[edit] 示例

#include <iomanip>
#include <iostream>
#include <string>
#include <type_traits>
#include <variant>
#include <vector>
 
// the variant to visit
using var_t = std::variant<int, long, double, std::string>;
 
// helper type for the visitor #4
template<class... Ts>
struct overloaded : Ts... { using Ts::operator()...; };
// explicit deduction guide (not needed as of C++20)
template<class... Ts>
overloaded(Ts...) -> overloaded<Ts...>;
 
int main()
{
    std::vector<var_t> vec = {10, 15l, 1.5, "hello"};
 
    for (auto& v: vec)
    {
        // 1. void visitor, only called for side-effects (here, for I/O)
        std::visit([](auto&& arg){ std::cout << arg; }, v);
 
        // 2. value-returning visitor, demonstrates the idiom of returning another variant
        var_t w = std::visit([](auto&& arg) -> var_t { return arg + arg; }, v);
 
        // 3. type-matching visitor: a lambda that handles each type differently
        std::cout << ". After doubling, variant holds ";
        std::visit([](auto&& arg)
        {
            using T = std::decay_t<decltype(arg)>;
            if constexpr (std::is_same_v<T, int>)
                std::cout << "int with value " << arg << '\n';
            else if constexpr (std::is_same_v<T, long>)
                std::cout << "long with value " << arg << '\n';
            else if constexpr (std::is_same_v<T, double>)
                std::cout << "double with value " << arg << '\n';
            else if constexpr (std::is_same_v<T, std::string>)
                std::cout << "std::string with value " << std::quoted(arg) << '\n';
            else 
                static_assert(false, "non-exhaustive visitor!");
        }, w);
    }
 
    for (auto& v: vec)
    {
        // 4. another type-matching visitor: a class with 3 overloaded operator()'s
        // Note: The `(auto arg)` template operator() will bind to `int` and `long`
        //       in this case, but in its absence the `(double arg)` operator()
        //       *will also* bind to `int` and `long` because both are implicitly
        //       convertible to double. When using this form, care has to be taken
        //       that implicit conversions are handled correctly.
        std::visit(overloaded{
            [](auto arg) { std::cout << arg << ' '; },
            [](double arg) { std::cout << std::fixed << arg << ' '; },
            [](const std::string& arg) { std::cout << std::quoted(arg) << ' '; }
        }, v);
    }
}

输出

10. After doubling, variant holds int with value 20
15. After doubling, variant holds long with value 30
1.5. After doubling, variant holds double with value 3
hello. After doubling, variant holds std::string with value "hellohello"
10 15 1.500000 "hello"

[edit] 缺陷报告

以下行为更改缺陷报告被追溯应用于先前发布的 C++ 标准。

DR 应用于 发布的行为 正确的行为
LWG 2970 C++17 重载 (1) 的返回类型没有保留
INVOKE 操作结果的值类别
保留
LWG 3052
(P2162R2)
C++17 如果 Variants 中的任何类型
不是 std::variant,则效果未指定
指定

[edit] 另请参阅

与另一个 variant 交换
(公有成员函数) [edit]