本文主要是介绍JsonCpp如何判断是否有某个KEY,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章出自:http://blog.csdn.net/yannanxiu/article/details/52415640
JsonCpp如何判断是否有某个KEY,使用json[“key”]和isXXX的函数即可。
如果json中没有key键,则会创建一个空成员或者返回一个空成员。
// Access an object value by name, create a null member if it does not exist.
Value &operator[]( const char *key );
// Access an object value by name, returns null if there is no member with that name.
const Value &operator[]( const char *key ) const;
// Access an object value by name, create a null member if it does not exist.
Value &operator[]( const std::string &key );
// Access an object value by name, returns null if there is no member with that name.
const Value &operator[]( const std::string &key ) const;bool isNull() const;
bool isBool() const;
bool isInt() const;
bool isUInt() const;
bool isIntegral() const;
bool isDouble() const;
bool isNumeric() const;
bool isString() const;
bool isArray() const;
bool isObject() const;
例如要判断Json数据中是否有{“status”:”1”}数据,则可以
if(json["staus"].isString()){string temp = json["staus"].asCString();
}
如果Json中没有status键就不会提取该数据。
这篇关于JsonCpp如何判断是否有某个KEY的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!