1
我有一個JSON對象說:增加值到JsonCpp對象/嵌套JsonCpp JSON:值對象
Json::Value temp;
temp["example1"] = "first";
將被表示爲
{
"example1" : "first"
}
現在,如果我想補充另一個對象進入上述對象而不使用索引方法,我該怎麼做呢?例如:
{
"example1" : "first",
"example2" : "second"
}
但使用避免語法
temp["example2"] = "second";
是否有任何JsonCpp當量至push_back()
(如在C++中的載體/列表)?