C++標準庫教學


C++是由Bjarne Stroustrup於1979年在貝爾實驗室開發的中級程式設計語言。 C++在各種平台上執行,例如Windows,Mac OS和各種版本的 UNIX/Linux。

C++標準庫是以C++語言為核心編寫的類,函式,巨集,常數等的集合。一個標頭檔案可以根據不同的編譯器實現而變化。此教學中包含C++標準庫中的內容,新的C++特定標頭檔案以及C++標準模板庫(STL)的其他重要的標頭檔案。

面向讀者

C++標準庫是C++程式員的參考,幫助他們在專案開發過程與系統程式設計相關程式設計時參考應用。 本教學中所有的C++函式都是以一種易於理解的方式或範例來演示說明,這此範例可以很容易地在開發的C++專案中使用。

閱讀或使用教學的前提條件

有C++程式設計語言的基本理解和知識,有助理解此庫中包含的C++類別和內建函式。所以要求讀者最好有C語言或C++程式設計基礎知識。

程式碼開發或測試環境

檢視在Linux系統上安裝的C++編譯器,如下命令 -

[root@yiibai ~]# g++ -v Using built-in specs. COLLECT_GCC=g++ COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper Target: x86_64-redhat-linux Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux Thread model: posix gcc version 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC)

對於本教學中給出的大多數範例,您可以加以執行和測試,因此您要還需要安裝好C++的編譯環境。還要熟悉C++的編譯的連結,並執行輸出結果。