#include <nlohmann/json.hpp>定义一个JSON格式的对象
时间: 2023-12-28 13:06:28 浏览: 71
PHP中使用json数据格式定义字面量对象的方法
可以使用 nlohmann::json 类来定义一个 JSON 格式的对象,示例代码如下:
```
#include <nlohmann/json.hpp>
using json = nlohmann::json;
int main() {
json my_json = {
{"name", "John"},
{"age", 30},
{"isStudent", true},
{"hobbies", {"reading", "swimming", "coding"}},
{"address", {
{"street", "Main Street"},
{"city", "New York"},
{"zip", "10001"}
}}
};
return 0;
}
```
在上面的示例代码中,我们定义了一个名为 `my_json` 的 JSON 格式的对象,并初始化了其中的一些属性。可以看到,nlohmann/json 库提供了非常方便的方式来定义和操作 JSON 格式的对象。
阅读全文