我正在寻找一种在C ++中使用多维地图的方法。它会是这样的:
["Key1"]
["SubKey1"] = "Value"
["SubKey2"] = "Value"
["Key2"]
...
答案 0 :(得分:2)
您可以使用
std::map<std::string, std::map<std::string, std::string>>
答案 1 :(得分:1)
您可以使用
std::map<std::vector<std::string>, std::string>