C++中的標準程式庫Standard Library)是函數的集合,其使用核心語言寫成。標準程式庫提供若干泛型容器、函數物件、泛型字串和串流(包含互動和檔案I/O),支援部分語言特性和常用的函數,如開平方根。C++標準程式庫也吸收了ISO C90 C標準程式庫。標準程式庫的特性宣告於std命名空間之中。

C++標準程式庫大量參考了並基於標準模板程式庫(STL)所建立的習慣用法,包含容器、演算法、迭代器、函數物件等。此一部分佔去標準庫相當大的比重,因而有些人錯誤地使用「STL」指稱整個C++標準程式庫。但這並非為正確的概念,C++標準程式庫和STL共有了許多特性,但都不是彼此的超集。

使用C++標準程式庫時,不必加上「.h」。

標準標頭檔

以下檔案包含標準庫的聲明。

容器

  • <bitset>
  • <deque>
  • <list>
  • <map>
  • <queue>
  • <set>
  • <stack>
  • <vector>

一般

  • <algorithm>
  • <functional>
  • <iterator>
  • <locale>
  • <memory>
  • <stdexcept>
  • <utility>

字串

輸入/輸出流

  • <fstream>
  • <ios>
  • <iostream>
  • <iosfwd>
  • <iomanip>
  • <istream>
  • <ostream>
  • <sstream>
  • <streambuf>

數值

  • <complex>
  • <numeric>
  • <valarray>

語言支援

  • <exception>
  • <limits>
  • <new>
  • <typeinfo>

C標準庫

來自C標準庫的所有標頭檔,以另一個名稱包含在C++標準中。將原名稱移去「.h」並在開頭處加上「c」作為新的名稱。例如「time.h」改成「ctime」。C++標準庫的標頭檔與C標準庫的標頭檔的唯一區別是,函數位於std::命名空間(雖然很少編譯器嚴格遵守,通常的做法是同時放在全域與 std 內,例如 printf 和 std::printf 兩者均有)。

參見

參考

外部連結

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.