std::visit
定义在头文件 <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.
假设 VariantBases
为 decltype(as-variant
(std::forward<Variants>(vars))... (一个包含 sizeof...(Variants) 个类型的包)
INVOKE(std::forward<Visitor>(vis),
std::get<indices>(std::forward<VariantBases>(vars))...),
as-variant
(vars).index()....INVOKE<R>(std::forward<Visitor>(vis),
std::get<indices>(std::forward<VariantBases>(vars))...),
as-variant
(vars).index()....只有当 VariantBases
中的每个类型都是有效类型时,这些重载才参与重载解析。如果 INVOKE 或 INVOKE<R>(自 C++20 起) 所表示的表达式无效,或者对于不同的 indices,INVOKE 或 INVOKE<R>(自 C++20 起) 的结果具有不同的类型或值类别,则程序格式错误。
as-variant
函数模板接受一个值,其类型可以 推断 为 std::variant<Ts...> (即 std::variant<Ts...> 或从 std::variant<Ts...> 派生的类型),并返回具有相同 const 限定符和值类别的 std::variant 值。内容 |
[edit] 参数
vis | - | 一个接受来自每个变体的每个可能备选的可调用对象 |
vars | - | 要传递给访问者的变体列表 |
[edit] 返回值
[edit] 异常
如果对于 vars 中的任何变体 vars_i,as-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 交换(公有成员函数) |