反正有没有多维地图?

时间:2014-09-30 09:46:04

标签: c++ map

我正在寻找一种在C ++中使用多维地图的方法。它会是这样的:

["Key1"]
         ["SubKey1"] = "Value"
         ["SubKey2"] = "Value"
["Key2"]
         ...

2 个答案:

答案 0 :(得分:2)

您可以使用

std::map<std::string, std::map<std::string, std::string>>

答案 1 :(得分:1)

您可以使用

std::map<std::vector<std::string>, std::string>