字符串的C ++映射为键,类型为值

时间:2016-06-05 11:38:19

标签: c++ c++11 boost-mpl boost-fusion boost-hana

在boost库中是否有boost-hana的替代方法可以让我创建像

这样的东西
typedef boost::AlterinativeToHana::map< make_pair<"abcd",ABCDType>,
                 make_pair<"efgh",EFGHType>,
                 make_pair<"ijkl",IJKLType>
               > stringToTypeMap;

我使用过boost-fusion,但我找不到适合我的用例的解决方案,即字符串到类型映射。

1 个答案:

答案 0 :(得分:3)

我认为你需要std::type_index

#include <iostream>
#include <typeindex>
#include <map>

class A
{};

class B
{};

int main()
{   
    std::map<std::type_index, std::string> typesMap;
    typesMap[typeid(A)] = "1111";
    typesMap[typeid(B)] = "2222";

    A instA;
    B instB;

    cout << "instA: " << typesMap[typeid(instA)] << "\n";
    cout << "instB: " << typesMap[typeid(instB)] << "\n";

    return 0;
}

输出:

instA: 1111
instB: 2222