[AllError错误填坑大全]Jsoncpp logicError
在将Json::Value添加元素子项的时候,不要与(key,Value)的形式共有。容易形成逻辑错误。
举例如下:
Json::Value output; Json::Value people; name["name"] = "li"; name["age"] = 20; output.append(people); output["function"] = "os";
Talk is cheap. Show me the code