在C ++中使Python像字典一样

时间:2018-08-30 11:29:57

标签: c++ dictionary hashmap

我想用c ++制作地图<,>,就像使用以下功能一样

KEY:std :: string VALUE:任何类型

例如我的地图应该是

{
    string: int,
    string: char,
    string: vector<string>,
    // ...... and so on
}

我已经尝试过模板方法,并且它们已经被初始化

template  <typename T>
map<string, T> myMap;

ps:我也尝试过map<string, auto>。这种方法会产生编译时错误

0 个答案:

没有答案