C++的JSON解析类 JSONVALUE
- 授权协议: MIT
- 开发语言: C/C++
- 操作系统: Windows
- 软件首页: http://code.google.com/p/jsonvalue/
- 软件文档: http://code.google.com/p/jsonvalue/
软件介绍
Jsonvalue 是 C++ 的 JSON 类,用来解析 JSON 到 C++ 对象,也可将对象转成 JSON 字符串。支持 ANSI 和 Unicode。特点:
- 严格和松散模式
- 不同数据类型
- 简单 API
- 仅依赖 STL
示例代码:
JSONVALUE j;
j[_T("double")].Push(0.32);
j[_T("test")][_T("boolean")] = true;
string a;
j.ToString(a);
输出结果:
{"double":[0.32],"test":{"boolean":true}}
Learn Python the Hard Way
Zed Shaw / Example Product Manufacturer / 2011
This is a very beginner book for people who want to learn to code. If you can already code then the book will probably drive you insane. It's intended for people who have no coding chops to build up t......一起来看看 《Learn Python the Hard Way》 这本书的介绍吧!
