nlohmann json:通过for begin/end 遍历object和array

nlohmann json:通过for遍历object和array_风静如云的博客-CSDN博客

介绍了通过for基于元素迭代的方式进行遍历。

还可以通过begin/end迭代器对object/array进行遍历:

#include 
#include 
using namespace std;
using json = nlohmann::json;

auto checkJsonType(json& x)
{
    if(x.type() == json::value_t::null)
    {
        cout<

你可能感兴趣的:(C/C++,json)