一个非常简单的问题,但我做了一些研究,大多数人建议转换为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]?