标签:c++ str 注意 test als false json obj pen
json::value test;
以下4中情况,都会返回true
test.isArray();
test.isObject();
test.isNull();
test == Json::nullValue;
执行下面的操作后,
test.append("1");
test.isObject();才会返回false
即Json::nullValue;是数组同时也是object
标签:c++ str 注意 test als false json obj pen
原文地址:http://www.cnblogs.com/thq3322110/p/7735755.html