C++中的標準程式庫(Standard Library)是類和函式的集合,其使用核心語言寫成。標準程式庫提供若干泛型容器、函式物件、泛型字串和串流(包含互動和檔案I/O),支援部分語言特性和常用的函式,如開平方根。C++標準程式庫也吸收了ISO C90 C標準程式庫。標準程式庫的特性宣告於std命名空間之中。
C++標準程式庫大量參考了並基於標準模板程式庫(STL)所建立的習慣用法,包含容器、演算法、迭代器、函式物件等。此一部分占去標準庫相當大的比重,因而有些人錯誤地使用「STL」指稱整個C++標準程式庫。但這並非為正確的概念,C++標準程式庫和STL共有了許多特性,但都不是彼此的超集。
使用C++標準程式庫時,不必加上「.h」。
標準標頭檔
以下檔案包含標準庫的聲明。
- <string>
- <fstream>
- <ios>
- <iostream>
- <iosfwd>
- <iomanip>
- <istream>
- <ostream>
- <sstream>
- <streambuf>
- <complex>
- <numeric>
- <valarray>
- <exception>
- <limits>
- <new>
- <typeinfo>
來自C標準庫的所有標頭檔,以另一個名稱包含在C++標準中。將原名稱移去「.h」並在開頭處加上「c」作為新的名稱。例如「time.h」改成「ctime」。C++標準庫的標頭檔與C標準庫的標頭檔的唯一區別是,函式位於std::命名空間(雖然很少編譯器嚴格遵守,通常的做法是同時放在全域與 std 內,例如 printf 和 std::printf 兩者均有)。
參見
參考
- 比雅尼·史特勞斯特魯普:The C++ Programming Language, Addison-Wesley, ISBN 0-201-70073-5
外部連結
- [1](頁面存檔備份,存於網際網路檔案館)Standard C++ Library reference(頁面存檔備份,存於網際網路檔案館)
- C ++ reference(頁面存檔備份,存於網際網路檔案館)
- The GNU Standard C++ Library
- LLVM/Clang C++ Standard Library(頁面存檔備份,存於網際網路檔案館)
- M(頁面存檔備份,存於網際網路檔案館)icrosoft MSDN Library - Standard C++ Library Reference(頁面存檔備份,存於網際網路檔案館)
- Rogue Wave C++ Standard Library Class Reference
- Microsoft MSDN Library - Standard C++ Library Reference(頁面存檔備份,存於網際網路檔案館)
- C++ Standard Library reference(頁面存檔備份,存於網際網路檔案館)
- The C++ Resources Network
- C++標準庫教學(頁面存檔備份,存於網際網路檔案館)
Wikiwand in your browser!
Seamless Wikipedia browsing. On steroids.
Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.
Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.