我可以使用libjson按名称获取对象吗?
我已经安装了libjson。我很惊讶没有办法获得价值 按对象名称。我将不得不写自己的功能,或者我错过了什么?
答案 0 :(得分:0)
如果您使用的是C ++库,则JSONNode类会重载[]运算符。
根据文档:
JSONNode & operator [] (const json_string & name);
const JSONNode & operator [] (const json_string & name) const;
This will give you a reference to a child node either at a specific location or by it’s name. Asking for a
node that is not there will result in undefined behavior.