赞
踩
github文件:https://github.com/nlohmann/json#read-json-from-a-file
只需在需要使用的文件中#include“json.hpp”
C++含义
.hpp
,其实质就是将. cpp
的实现代码混入. h
头文件当中,定义与实现都包含在同一文件,则该类的调用者只需要include该hpp
文件即可,无需再
将cpp
加入到project中进行编译。
给出相应的json文件
//example.json { "pi": 3.141, "happy": true, "name": "Niels", "nothing": null, "answer": { "everything": 42 }, "list": [ 1, 0, 2 ], "object": { "currency": "USD", "value": 42.99 }, "add": 10 }
#include
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。