文章

std::variant 简单用法

std::variant 是 c++17 引入的标准库类,它提供了一种类型安全的机制,可以在编译时定义一个可以存储多种类型的变量。通过std::variant,我们可以在运行时将值存储在一个可变的、类型安全的容器中,并在需要时进行类型转换和访问,从而实现更灵活的编程。和 union 类似。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include <iostream>
#include <variant>
#include <string>
#include <vector>

struct MyType
{
    std::string name;
    int age;
};

using Value = std::variant<int, double, std::string, bool, MyType>;

struct Print
{
    void operator()(int i)
    {
        std::cout << i << std::endl;
    }
    void operator()(double i)
    {
        std::cout << i << std::endl;
    }
    void operator()(std::string i)
    {
        std::cout << i << std::endl;
    }
    void operator()(bool i)
    {
        std::cout << i << std::endl;
    }
    void operator()(MyType i)
    {
        std::cout << i.name << i.age << std::endl;
    }
};

int main()
{
    MyType t;
    t.name = "xiong";
    t.age = 27;
    std::vector<Value> test = {
        88,
        99.9,
        "Hello world",
        true,
        t
    };
    for (const auto &it : test)
    {
        std::cout << it.index() << std::endl;
        std::visit(Print{}, it);
    }
    std::cout << std::get<0>(test[0]) << std::endl;
    std::cout << std::get<1>(test[1]) << std::endl;
    std::cout << std::get<2>(test[2]) << std::endl;
    std::cout << std::get<3>(test[3]) << std::endl;
    std::cout << std::holds_alternative<std::string>(test[2]) << std::endl;

    return 0;
}
本文由作者按照 CC BY 4.0 进行授权

© ziqing. 保留部分权利。

纸上得来终觉浅,绝知此事要躬行!