JSON Spirit
- 授权协议: MIT
- 开发语言: C/C++
- 操作系统: Windows
- 软件首页: http://www.codeproject.com/Articles/20027/JSON-Spirit-A-C-JSON-Parser-Generator-Implemented
软件介绍
JSON Spirit 是一个 C++ 的 JSON 解析器和生成器,使用 Boost Spirit 实现。
示例代码:
istringstream is( "[1][1,2][1,2,3]" ); // no white space separating arrays Stream_reader< istringstream, Value > reader( is ); Value value; const bool ok = reader.read_next( value ); // read first array reader.read_next( value ); // read second array reader.read_next( value ); // read third array
UNIX编程环境
Brian W.Kernighan、Rob Pike / 陈向群/等 / 机械工业出版社 / 1999-10-1 / 24.00
本书对UNIX操作系统的编程环境做了详细而深入的讨论,内容包括UNIX的文件系统、Shell、过滤程序、I/O编程、系统调用等,并对UNIX中的程序开发方法做了有针对性的指导。本书内容深入浅出,实例丰富,无论是UNIX系统的初学者还是专业人员都可从本书受益。本书亦可作为大学生、研究生学习UNIX的教材。一起来看看 《UNIX编程环境》 这本书的介绍吧!
