gpt4 book ai didi

C++11 在 map 中为值(int 和 string)存储多种数据类型的最简单方法?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:09:53 25 4
gpt4 key购买 nike

我想要一个使用的 map

  • 键字符串
  • 值的整数或字符串

像这样:

std::map<std::string, SOME TYPE> myMap;
myMap["first_key"] = 10;
myMap["second_key"] = "stringValue";

做这种事情的最简单方法是什么?

已添加)我正在寻找适用于 C++11 的解决方案

最佳答案

在c++17中,你可以使用std::variant<int, std::string> ,在此之前,您可以使用 boost 中的那个:

using IntOrString = std::variant<int, std::string>;
std::map<std::string, IntOrString> myMap;
myMap["first_key"] = 10;
myMap["second_key"] = "stringValue";

关于C++11 在 map<key, value> 中为值(int 和 string)存储多种数据类型的最简单方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38767886/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com