iOS 键值存储 ZXKVStore
- 授权协议: MIT
- 开发语言: Swift
- 操作系统: iOS
- 软件首页: https://github.com/zhangxigithub/ZXKVStore
软件介绍
ZXKVStore 是一个简单易用的键值数据存储。
使用:
println(ZXKV["homepage"]) //nil ZXKV["homepage"] = "http://www.zhangxi.me" // store a value to the key println(ZXKV["homepage"]) //http://www.zhangxi.me let array = ["abc","123"] ZXKV["array"] = array println(ZXKV["array"]) //["abc","123"] //any object which implemented NSCoding can be stored.
C++Templates中文版
David Vandevoorde、Nicolai M.Josuttis / 陈伟柱 / 人民邮电出版社 / 2008-2 / 69.00元
本书是C++模板编程的完全指南,旨在通过基本概念、常用技巧和应用实例3方面的有用资料,为读者打下C++模板知识的坚实基础。 全书共22章。第1章全面介绍了本书的内容结构和相关情况。第1部分(第2~7章)以教程的风格介绍了模板的基本概念,第2部分(第8~13章)阐述了模板的语言细节,第3部分(第14~18章)介绍了C++模板所支持的基本设计技术,第4部分(第19~22章)深入探讨了各种使用模板......一起来看看 《C++Templates中文版》 这本书的介绍吧!
