gpt4 book ai didi

c++ - 在 std::map 中使用 'auto'

转载 作者:行者123 更新时间:2023-11-30 04:48:58 26 4
gpt4 key购买 nike

我正在解析一个 JSON 文件,值可以由整数、字符串或 float 组成。通常我有一个这样定义的 map :

 std::map<std::string, std::string> myMap;

问题是如果可以有不同的数据类型,我不清楚如何使用 map,我试过:

 std::map<std::string, auto> myMap;

但是我得到一个错误:

'auto' is not allowed here

有什么方法可以将它用于不同的数据类型,还是我需要定义一个对象,它可以包含不同的数据类型,例如:

Class MyObject
{
private:
int integerValue;
std::string stringValue;

public:
void setValue( std::string value, int type );
}

MyObject::setValue( std::string value, int type )
{
if( type == 0 )
stringValue = value;
else if( type == 1 )
integerValue = stoi( value );
}

或者有更好的方法吗?谢谢!

最佳答案

为了实现您的要求,请使用:

std::map<std::string, std::any> myMap;

例如:

#include <map>
#include <string>
#include <any> // Since C++17

main()
{
std::map<std::string, std::any> myMap;

std::string strName{ "Darth Vader" };
int nYear = 1977;

myMap["Name"] = strName;
myMap["Year"] = nYear;

std::string strS = std::any_cast<std::string>(myMap["Name"]); // = "Darth Vader"
int nI = std::any_cast<int>(myMap["Year"]); // = 1977
}

关于c++ - 在 std::map 中使用 'auto',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55593167/

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