# 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)
[](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++ 庫中受益。