c ++在json格式化的char *中打印输出值的简便方法

时间:2017-03-10 15:41:18

标签: c++ json

一个非常简单的问题,但我做了一些研究,大多数人建议转换为Json类,但有更简单的方法来做到这一点:

#include <iostream>

using namespace std;

int main() {
    // your code goes here
    const char *json = "{\"hello\": \"world\"}";
    cout<< json["hello"] << endl;
    return 0;
}

如果我知道密钥是“你好”,有没有办法可以简单地打印“世界”这个值?喜欢json [key]?

0 个答案:

没有答案