# Boost的介紹
因為你正在讀這本書,我希望你至少對Boost庫有一點熟悉,或者你至少聽說過Boost。 Boost里有很多庫,只有很少一些是你不感興趣的。可以肯定你會在里面找到馬上就要用的庫。Boost庫覆蓋了廣泛的領域,從數學庫到智能指針,從模板 元編程庫到預處理器庫,從線程到lambda表達式,等等。所有Boost庫都具有寬松的許可證,確保庫可以被自由使用于商用軟件。支持通過新聞組實現, 那是Boost社區最具活力的地方,而且至少有一家公司專門提供與Boost相關的咨詢服務。對于Boost社區的在線介紹,我強烈建議你訪問Boost 網站 [www.boost.org](http://www.boost.org).
在寫本書之時,Boost的最新版本為1.32.0\. 里面包括58個獨立的庫。后面將分類介紹這58個庫,并給出關于每個庫的簡短描述。對于本書未詳細討論的庫,可以看一下[www.boost.org](http://www.boost.org/)提供的文檔,你也可以從那里下載Boost庫。
- 序
- 前言
- Acknowledgments
- 關于作者
- 本書的組織結構
- Boost的介紹
- 字符串及文本處理
- 數 據結構, 容器, 迭代器, 和算法
- 函數對象及高級編程
- 泛 型編程與模板元編程
- 數學及數字處理
- 輸入/輸出
- 雜項
- Part I: 通用庫
- Library 1. Smart_ptr
- Smart_ptr庫如何改進你的程序?
- 何時我們需要智能指針?
- Smart_ptr如何適應標準庫?
- scoped_ptr
- scoped_array
- shared_ptr
- shared_array
- intrusive_ptr
- weak_ptr
- Smart_ptr總結
- Library 2. Conversion
- Conversion 庫如何改進你的程序?
- polymorphic_cast
- polymorphic_downcast
- numeric_cast
- lexical_cast
- Conversion 總結
- Library 3. Utility
- Utility 庫如何改進你的程序?
- BOOST_STATIC_ASSERT
- checked_delete
- noncopyable
- addressof
- enable_if
- Utility 總結
- Library 4. Operators
- Operators庫如何改進你的程序?
- Operators
- 用法
- Operators 總結
- Library 5. Regex
- Regex庫如何改進你的程序?
- Regex 如何適用于標準庫?
- Regex
- 用法
- Regex 總結
- Part II: 容器及數據結構
- Library 6. Any
- Any 庫如何改進你的程序?
- Any 如何適用于標準庫?
- Any
- 用法
- Any 總結
- Library 7. Variant
- Variant 庫如何改進你的程序?
- Variant 如何適用于標準庫?
- Variant
- 用法
- Variant 總結
- Library 8. Tuple
- Tuple 庫如何改進你的程序?
- Tuple 庫如何適用于標準庫?
- Tuple
- 用法
- Tuple 總結
- Part III: 函數對象與高級編程
- Library 9. Bind
- Bind 庫如何改進你的程序?
- Bind 如何適用于標準庫?
- Bind
- 用法
- Bind 總結
- Library 10. Lambda
- Lambda 庫如何改進你的程序?
- Lambda 如何適用于標準庫?
- Lambda
- 用法
- Lambda 總結
- Library 11. Function
- Function 庫如何改進你的程序?
- Function 如何適用于標準庫?
- Function
- 用 法
- Function 總結
- Library 12. Signals
- Signals 庫如何改進你的程序?
- Signals 如何適用于標準庫?
- Signals
- 用法
- Signals 總結