# Boost C++ 库
### 目录
* [第 1 章 简介](introduction.html)
* [第 2 章 智能指针](smartpointers.html)
* [第 3 章 函数对象](functionobjects.html)
* [第 4 章 事件处理](eventhandling.html)
* [第 5 章 字符串处理](stringhandling.html)
* [第 6 章 多线程](multithreading.html)
* [第 7 章 异步输入输出](asio.html)
* [第 8 章 进程间通讯](interprocesscommunication.html)
* [第 9 章 文件系统](filesystem.html)
* [第 10 章 日期与时间](datetime.html)
* [第 11 章 序列化](serialization.html)
* [第 12 章 词法分析器](parser.html)
* [第 13 章 容器](containers.html)
* [第 14 章 数据结构](datastructures.html)
* [第 15 章 错误处理](errorhandling.html)
* [第 16 章 类型转换操作符](castoperators.html)
[![](https://box.kancloud.cn/2016-02-29_56d41c2d6e214.gif)](http://creativecommons.org/licenses/by-nc-nd/3.0/de/deed.zh) 该书采用 [Creative Commons License](http://creativecommons.org/licenses/by-nc-nd/3.0/de/deed.zh) 授权
本书的中文版由 [Albert Lai](mailto:alai04@gmail.com), [Jerry Guo](mailto:jerry2mouse@gmail.com), [Kun Zeng](mailto:zengkun100@gmail.com), [Liangfu Chen](mailto:chenclf@vrlab.cau.ac.kr) ([主页](http://vrlab.cau.ac.kr/~chenclf/)), [Cui Wei](mailto:watsoncui@gmail.com) 和 [Rui Shi](mailto:shiruide@gmail.com) 翻译。
## 内容
### 你将学到些什么
本书是对 Boost C++ 库的介绍,Boost 库通过加入一些在实践中非常有用的函数对 C++ 标准进行了补充。 由于 Boost C++ 库是基于 C++ 标准的,所以它们是使用最先进的 C++ 来实现的。 它们是平台独立的,并由于有一个大型的开发人员社区,它可以被包括 Windows 和 Linux 在内的许多操作系统所支持。
Boost C++ 库可以提升你作为一个 C++ 开发人员的生产力。 例如,你可以从智能指针中受益,帮助你写出更可靠的代码,或者使用某个库来开发平台独立的网络应用。 因为多数 Boost C++ 库正被收录进下一个版本的 C++ 标准,所以你可以从今天就开始作好准备。
## 要求
### 你应该懂得些什么
因为 Boost C++ 库是基于且扩展了 C++ 标准,所以你应该懂得 C++ 标准。 你应该了解且能够使用容器、迭代器及算法,最好有听说过以下概念:RAII,函数对象,或是谓词。 你越是了解 C++ 标准,就越能从 Boost C++ 库中受益。