1. 程式人生 > >c++ json庫使用註意

c++ json庫使用註意

true isnull null ray 使用 arr strong 情況 時也

json::value test;

以下4中情況,都會返回true

test.isArray();

test.isObject();

test.isNull();

test == Json::nullValue;

執行下面的操作後,

test.append("1");

test.isObject();才會返回false

即Json::nullValue;是數組同時也是object

c++ json庫使用註意