JsonCpp - when having a json::Value object, how can i know it's key name?

别等时光非礼了梦想. 提交于 2019-12-04 05:34:23

You can use Json::Value::getMemberNames() to iterate through the names.

Json::Value value;
for (auto const& id : value.getMemberNames()) {
    std::cout << id << std::endl;
}

You need an up-pointer? It's not a bad idea, but adding a field for the up-pointer would break binary-compatibility (which is very important). So yes, you need to wrap it.

Currently, a sub-value is just a Value, like any other.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!