gpt4 book ai didi

c++ nlohmann json - 如何迭代/查找嵌套对象

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:17:32 33 4
gpt4 key购买 nike

我正在尝试使用 nlohmann::json 遍历嵌套的 json。我的 json 对象如下:

{
"one": 1,
"two": 2
"three": {
"three.one": 3.1
},
}

我正在尝试迭代和/或查找嵌套对象。但是,似乎没有默认支持它。看来我必须通过创建另一个循环来遍历每个子对象,或者为每个子对象递归调用 fn。

我的以下代码及其结果表明,只有顶层迭代是可能的。

void findNPrintKey (json src, const std::string& key) {
auto result = src.find(key);
if (result != src.end()) {
std::cout << "Entry found for : " << result.key() << std::endl;
} else {
std::cout << "Entry not found for : " << key << std::endl ;
}
}


void enumerate () {

json j = json::parse("{ \"one\" : 1 , \"two\" : 2, \"three\" : { \"three.one\" : 3.1 } } ");
//std::cout << j.dump(4) << std::endl;

// Enumerate all keys (including sub-keys -- not working)
for (auto it=j.begin(); it!=j.end(); it++) {
std::cout << "key: " << it.key() << " : " << it.value() << std::endl;
}

// find a top-level key
findNPrintKey(j, "one");
// find a nested key
findNPrintKey(j, "three.one");
}

int main(int argc, char** argv) {
enumerate();
return 0;
}

和输出:

ravindrnathsMBP:utils ravindranath$ ./a.out 
key: one : 1
key: three : {"three.one":3.1}
key: two : 2
Entry found for : one
Entry not found for : three.one

那么,是否有可用的递归迭代,还是我们必须自己使用 is_object() 方法来执行此操作?

最佳答案

确实,迭代不会递归,并且(目前)还没有库函数。关于:

#include "json.hpp"
#include <iostream>

using json = nlohmann::json;

template<class UnaryFunction>
void recursive_iterate(const json& j, UnaryFunction f)
{
for(auto it = j.begin(); it != j.end(); ++it)
{
if (it->is_structured())
{
recursive_iterate(*it, f);
}
else
{
f(it);
}
}
}

int main()
{
json j = {{"one", 1}, {"two", 2}, {"three", {"three.one", 3.1}}};
recursive_iterate(j, [](json::const_iterator it){
std::cout << *it << std::endl;
});
}

输出是:

1
"three.one"
3.1
2

关于c++ nlohmann json - 如何迭代/查找嵌套对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45934851/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com