我正在使用 libJson(C++ 库)来解析 JSON 文件。我的 JSON 文件如下所示。
{
"Comany":
{
"name": "Some Company",
"Resources": {
"employees": [
{"name": "John", "id": "23432"},
{"name": "Alex", "id": "32432"}
],
"Computers": [
{"IPAddress": "192.168.1.3", "CPU": "IntelCorei5"},
{"IPAddress": "192.168.1.4", "CPU": "IntelCorei3"}
]
}
}
}
我有员工和计算机的结构。我想创建一个结构数组。
有什么想法可以用 libJson 完成吗?