gpt4 book ai didi

c++ - RapidJSON 库通过索引获取数组中的值

转载 作者:IT王子 更新时间:2023-10-28 23:28:07 26 4
gpt4 key购买 nike

{"hi": "hellow",
"first":
{"next":[
{"key":"important_value"}
]
}

}

在数组中访问 RapidJSON:

这工作:cout << "HI VALUE:" << variable["hi"].GetString() << endl;这将输出:hellow正如预期的那样,问题是访问内部值,比如如果我想获得“Important_Value”,我尝试了这样的事情:cout << "Key VALUE:" << variable["first"]["next"][0]["key"].GetString() << endl ;但这不起作用,我希望能够通过数组的第一项获得“important_value”,在这种情况下它是 [0]这会导致错误。

如何通过索引获取它?我希望我的解释清楚。

提前致谢。

最佳答案

JSON

    {"hi": "hellow", "first":  {"next":[{"key":"important_value"}  ] } }

代码:

rapidjson::Document document;       

if (document.Parse<0>(json).HasParseError() == false)
{
const Value& a = document["first"];

const Value& b = a["next"];

// rapidjson uses SizeType instead of size_t.
for (rapidjson::SizeType i = 0; i < b.Size(); i++)
{
const Value& c = b[i];

printf("%s \n",c["key"].GetString());
}
}

将打印 important_value

关于c++ - RapidJSON 库通过索引获取数组中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10037778/

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