我认为问题是具体的,我想遍历一个形式为.json的数组:
{ "N" : 5, "Rotacion" : 42, "Igual" : 20, "Inverso" : 0, "RotacionE" : 47, "Espejo" : 22, "Puntuacion" : 0, "_id" : "563b7b4756ab632f47fe6d7f" , "Lados" : [], "Camino" : [ 6, 5, 4, 21, 22, 7, 2, 3, 20, 23, 8, 1, 18, 19, 24, 9, 0, 17, 16, 15, 10, 11, 12, 13, 14 ], "__v" : 0 }
我搜索了一些教程,他们告诉我要做以下事情:
const Value& a = document["a"];
assert(a.IsArray());
for (SizeType i = 0; i < a.Size(); i++) // Uses SizeType instead of size_t
printf("a[%d] = %d\n", i, a[i].GetInt());
此示例的问题在于编译时出现以下错误:
/home/jmuniz/code/Cocos2d-x/interface/Classes/HelloWorldScene.cpp:84:7: error: reference to ‘Value’ is ambiguous
const Value& a = d["Camino"];
和
/home/jmuniz/code/Cocos2d-x/interface/cocos2d/cocos/base/CCValue.h:54:14: note: candidates are: class cocos2d::Value
class CC_DLL Value
^
In file included from /home/jmuniz/code/Cocos2d-x/interface/Classes/HelloWorldScene.cpp:4:0:
/home/jmuniz/Dev/rapidjson-master/include/rapidjson/document.h:1758:31: note: typedef class rapidjson::GenericValue<rapidjson::UTF8<> > rapidjson::Value
typedef GenericValue<UTF8<> > Value;
^
/home/jmuniz/code/Cocos2d-x/interface/Classes/HelloWorldScene.cpp:84:7: error: ‘Value’ does not name a type
const Value& a = d["Camino"];
这里我放了一段打开.json的代码,这样你就可以知道我在做什么
FILE* fp = fopen("/home/jmuniz/code/Cocos2d-x/interface/Resources/res/puzzles(copia).json", "r"); // non-Windows use "r"
char readBuffer[65536];
FileReadStream is(fp, readBuffer, sizeof(readBuffer));
Document d;
d.ParseStream(is);
fclose(fp);
我需要知道错误发生的原因吗?或者至少告诉我如何访问阵列进行打印然后操作
答案 0 :(得分:1)
这是因为有两种类型具有相同名称Value
。
要解决歧义,请改用rapidjson::Value
,或者输入新名称。
答案 1 :(得分:1)
string josn="{ \"N\" : 5, \"Rotacion\" : 42, \"Igual\" : 20, \"Inverso\" : 0, \"RotacionE\" : 47, \"Espejo\" : 22, \"Puntuacion\" : 0, \"_id\" : \"563b7b4756ab632f47fe6d7f\" , \"Lados\" : [], \"Camino\" : [ 6, 5, 4, 21, 22, 7, 2, 3, 20, 23, 8, 1, 18, 19, 24, 9, 0, 17, 16, 15, 10, 11, 12, 13, 14 ], \"__v\" : 0 }";
rapidjson::Document doc;
if (!doc.Parse<0>(josn.c_str()).HasParseError()) {
const rapidjson::Value& myArray=doc["Camino"];
vector<int> Camino;
if (myArray.GetType()==rapidjson::kArrayType) {
for (int i=0; i<myArray.Size(); i++) {
Camino.push_back(myArray[i].GetInt());
}
for (auto it=Camino.begin(); it!=Camino.end(); it++) {
printf("%d\n",*it);
}
}
}else{
printf("1 error parsing the json %zu\n",doc.GetErrorOffset());
}