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}}
How to Think About Algorithms
Jeff Edmonds / Cambridge University Press / 2008-05-19 / USD 38.99
HOW TO THINK ABOUT ALGORITHMS There are many algorithm texts that provide lots of well-polished code and proofs of correctness. Instead, this one presents insights, notations, and analogies t......一起来看看 《How to Think About Algorithms》 这本书的介绍吧!
