C 常用的 include標頭檔案總結

2022-03-15 21:15:23 字數 1260 閱讀 1278

本文詳細羅列了c++所包含的標頭檔案的名稱及作用說明,比較適合初學者了解一下,幾乎每乙個c++檔案的開始都要#include ,可大部分人都沒有去關注#include 後面是什麼,對照本文的說明相信會對大家理解c++結構多少有些幫助。

#include //stl 雙端佇列容器

#include //異常處理類

#include //檔案輸入/輸出

#include //stl 定義運算函式(代替運算子)

#include //定義各種資料型別最值常量

#include //stl 線性列表容器

#include //stl 對映容器

#include //引數化輸入/輸出

#include //基本輸入/輸出支援

#include //基於字串的流

#include //stl 堆疊容器

#include //stl 通用演算法

#include //stl 位集容器

#include //字元處理

#include //標準異常類

#include //底層輸入/輸出支援

#include //字串類

#include //stl 通用模板類

#include //stl 動態陣列容器

#include //輸入/輸出系統使用的前置宣告

#include //定義錯誤碼

#include //定義本地化函式

#include //定義數學函式

#include //複數類

#include //定義輸入/輸出函式

#include //定義雜項函式及記憶體分配函式

#include //字串處理

#include //定義關於時間的函式

#include //資料流輸入/輸出

#include //基本輸入流

#include //基本輸出流

#include //stl 佇列容器

#include //stl 集合容器

#include //寬字元處理及輸入/輸出

#include //寬字元分類

#include //複數處理

#include //浮點環境

#include //整數格式轉換

#include //布林環境

#include //整型環境

#include //通用型別數學巨集

讀者可對照中文解釋加以理解,並在c++程式開發中快速的記住它們,為以後程式設計提供便利。

C 中 include標頭檔案

fstream是c stl中對檔案操作的合集,包含了常用的所有檔案操作。在c 中,所有的檔案操作,都是以流 stream 的方式進行的,fstream也就是檔案流file stream。1 插入器 向流輸出資料。比如說開啟了乙個檔案流fout,那麼呼叫fout write to file 2 析取器...

C 中的 標頭檔案」 include「

algorithm意為 演算法 是c 的標準模版庫 stl 中最重要的標頭檔案之一,提供了大量基於 迭代器的非成員模版函式 非修改性序列操作 12個 for each 迴圈 對序列中的每個元素執行某操作 find 查詢 在序列中找出某個值的第一次出現的位置 利用底層元素的等於操作符,對範圍內的元素與...

include包含C 的所有標頭檔案

參考部落格 使用和平常的標頭檔案一樣,如下 includeusing namespace std int main int a,b cin a b cout 這個標頭檔案包含以下等等c 中包含的所有標頭檔案 include include include include include includ...