QJsonObject 示例
时间: 2023-07-07 21:06:35 浏览: 96
JSONObject使用示例
以下是一个简单的 QJsonObject 示例:
```cpp
#include <QCoreApplication>
#include <QJsonObject>
#include <QDebug>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
QJsonObject obj;
obj.insert("name", "John");
obj.insert("age", 30);
obj.insert("married", true);
qDebug() << obj;
return a.exec();
}
```
输出结果为:
```
{
"age": 30,
"married": true,
"name": "John"
}
```
这个示例创建了一个 QJsonObject 对象,并向其中插入了三个键值对,分别是 "name"、"age" 和 "married"。然后通过 qDebug() 输出这个对象的内容。
阅读全文