《超越C 標準庫 Boost庫導引》 目錄

2021-04-01 20:26:58 字數 3117 閱讀 4884

序(foreword

)前言(

preface

)致謝(

acknowledgments

)關於作者(

about the author

)本書的組織結構(

anization of this book

)boost

庫簡介(

introduction to boost

)string and text processing

data structures, containers, iterators, and algorithms

function objects and higher-order programming

generic programming and template metaprogramming

math and numerics

input/output

miscellaneous

part i.general libraries

library 1.**art_ptr

how does the **art_ptr library improve your programs?

when do we need **art pointers?

how does **art_ptr fit with the standard library?

scoped_ptr

scoped_array

shared_ptr

shared_array

intrusive_ptr

weak_ptr

**art_ptr summary

endnotes

library 2.conversion

how does the conversion library improve your programs?

polymorphic_cast

polymorphic_downcast

numeric_cast

lexical_cast

conversion summary

library 3.utility

how does the utility library improve your programs?

boost_static_assert

checked_delete

noncopyable

addressof

enable_if

utility summary

library 4.operators

how does the operators library improve your programs?

operators

usage

operators summary

library 5.regex

how does the regex library improve your programs?

how does regex fit with the standard library?

regex

usage

regex summary

part ii.containers and data structures

library 6.any

how does the any library improve your programs?

how does any fit with the standard library?

any

usage

any summary

library 7.variant

how does the variant library improve your programs?

how does variant fit with the standard library?

variant

usage

variant summary

library 8.tuple

how does the tuple library improve your programs?

how does the tuple library fit with the standard library?

tuple

usage

tuple summary

part iii.function objects and higher-order programming

library 9.bind

how does the bind library improve your programs?

how does bind fit with the standard library?

bind

usage

bind summary

library 10.lambda

how does the lambda library improve your programs?

how does lambda fit with the standard library?

lambda

usage

lambda summary

library 11.function

how does the function library improve your programs?

how does function fit with the standard library?

function

usage

function summary

library 12.signals

how does the signals library improve your programs?

how does signals fit with the standard library?

signals

usage

signals summary

endnotes

《超越C 標準庫 Boost庫導引》 前言

親愛的讀者,歡迎來到 超越 c 標準庫 boost 庫導引 如果你對泛型程式設計 庫設計 以及 c 標準庫感興趣,這本書就是為你準備的。因為本書所針對的讀者是中高階的 c 程式設計師,c 的一些基礎概念在本書中幾乎沒有涉及。正如標題所暗示的那樣,本書的重點是 boost 庫的常規用法 好的習慣 實現...

準標準庫Boost

在c 中,庫的地位是非常高的。c 之父 bjarne stroustrup先生多次表示了設計庫來擴充功能要好過設計更多的語法的言論。現實中,c 的庫門類繁多,解決的問題也是極其廣泛,庫從輕量級到重量級的都有。不少都是讓人眼界大開,亦或是望而生嘆的思維傑作。由於庫的數量非常龐大,而且限於筆者水平,其中...

關於Boost庫和STL標準模板庫

首先,關於stl,最近也看了不少關於stl的部落格。往大概的講,stl即一種標準的模板庫,同時,它也是靜態庫,它存在的目的即是為了實現 的服用性,即為了提高敲 的效率,解放程式設計人員的 生產率。往細的講,stl標準模板庫是由 空間配置器,迭代器,容器,演算法,仿函式和配接器這六大部分組成。至於st...

C 各大有名庫的介紹 準標準庫Boost

c 各大有名庫的介紹 準標準庫boost boost庫是一個經過千錘百煉 可移植 提供源 的c 庫,作為標準庫的後備,是c 標準化程序的發動機之一。boost庫由c 標準委員會庫工作組成員發起,在c 社群中影響甚大,其成員已近2000人。boost庫為我們帶來了最新 最酷 最實用的技術,是不折不扣的...

深入C 「準」標準庫,Boost你的力量

最近一年我 面試了數十位 c 應聘者,慣用的暖場問題是 工作中使用過 stl 的哪些元件?使用過 boost 的哪些元件?得到的答案大多集中在 vector map 和 shared ptr。如果對方是在校學生,我一般會問問 vector 或 map 的內部實現 各種操作的複雜度以及迭代器失效的可能...