• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            【C++常識】C/C++頭文件一覽

            C、傳統(tǒng) C++

            #include <assert.h>    //設定插入點
            #include <ctype.h>     //字符處理
            #include <errno.h>     //定義錯誤碼
            #include <float.h>     //浮點數(shù)處理
            #include <fstream.h>    //文件輸入/輸出
            #include <iomanip.h> //參數(shù)化輸入/輸出
            #include <iostream.h>   //數(shù)據(jù)流輸入/輸出
            #include <limits.h>    //定義各種數(shù)據(jù)類型最值常量
            #include <locale.h>    //定義本地化函數(shù)
            #include <math.h>     //定義數(shù)學函數(shù)
            #include <stdio.h>     //定義輸入/輸出函數(shù)
            #include <stdlib.h>    //定義雜項函數(shù)及內存分配函數(shù)
            #include <string.h>    //字符串處理
            #include <strstrea.h>   //基于數(shù)組的輸入/輸出
            #include <time.h>     //定義關于時間的函數(shù)
            #include <wchar.h> //寬字符處理及輸入/輸出
            #include <wctype.h>    //寬字符分類

            //////////////////////////////////////////////////////////////////////////

            標 準 C++ (同上的不再注釋)

            #include <algorithm>    //STL 通用算法
            #include <bitset>     //STL 位集容器
            #include <cctype>
            #include <cerrno>
            #include <clocale>
            #include <cmath>
            #include <complex>     //復數(shù)類
            #include <cstdio>
            #include <cstdlib>
            #include <cstring>
            #include <ctime>
            #include <deque>      //STL 雙端隊列容器
            #include <exception> //異常處理類
            #include <fstream>
            #include <functional>   //STL 定義運算函數(shù)(代替運算符)
            #include <limits>
            #include <list>      //STL 線性列表容器
            #include <map>       //STL 映射容器
            #include <iomanip>
            #include <ios>       //基本輸入/輸出支持
            #include <iosfwd>     //輸入/輸出系統(tǒng)使用的前置聲明
            #include <iostream>
            #include <istream>     //基本輸入流
            #include <ostream>     //基本輸出流
            #include <queue>      //STL 隊列容器
            #include <set>       //STL 集合容器
            #include <sstream>     //基于字符串的流
            #include <stack>      //STL 堆棧容器    
            #include <stdexcept>    //標準異常類
            #include <streambuf>    //底層輸入/輸出支持
            #include <string>     //字符串類
            #include <utility>     //STL 通用模板類
            #include <vector>     //STL 動態(tài)數(shù)組容器
            #include <cwchar>
            #include <cwctype>

            using namespace std;

            //////////////////////////////////////////////////////////////////////////

            C99 增加

            #include <complex.h>   //復數(shù)處理
            #include <fenv.h>    //浮點環(huán)境
            #include <inttypes.h>  //整數(shù)格式轉換
            #include <stdbool.h>   //布爾環(huán)境
            #include <stdint.h>   //整型環(huán)境
            #include <tgmath.h>   //通用類型數(shù)學宏
            C/C++ 頭文件一覽

            C、傳統(tǒng) C++

            #include <assert.h>    //設定插入點
            #include <ctype.h>     //字符處理
            #include <errno.h>     //定義錯誤碼
            #include <float.h>     //浮點數(shù)處理
            #include <fstream.h>    //文件輸入/輸出
            #include <iomanip.h>    //參數(shù)化輸入/輸出
            #include <iostream.h>   //數(shù)據(jù)流輸入/輸出
            #include <limits.h>    //定義各種數(shù)據(jù)類型最值常量
            #include <locale.h>    //定義本地化函數(shù)
            #include <math.h>     //定義數(shù)學函數(shù)
            #include <stdio.h>     //定義輸入/輸出函數(shù)
            #include <stdlib.h>    //定義雜項函數(shù)及內存分配函數(shù)
            #include <string.h>    //字符串處理
            #include <strstrea.h>   //基于數(shù)組的輸入/輸出
            #include <time.h>     //定義關于時間的函數(shù)
            #include <wchar.h> //寬字符處理及輸入/輸出
            #include <wctype.h>    //寬字符分類

            //////////////////////////////////////////////////////////////////////////

            標 準 C++ (同上的不再注釋)

            #include <algorithm>    //STL 通用算法
            #include <bitset>     //STL 位集容器
            #include <cctype>
            #include <cerrno>
            #include <clocale>
            #include <cmath>
            #include <complex>     //復數(shù)類
            #include <cstdio>
            #include <cstdlib>
            #include <cstring>
            #include <ctime>
            #include <deque>      //STL 雙端隊列容器
            #include <exception> //異常處理類
            #include <fstream>
            #include <functional>   //STL 定義運算函數(shù)(代替運算符)
            #include <limits>
            #include <list>      //STL 線性列表容器
            #include <map>       //STL 映射容器
            #include <iomanip>
            #include <ios>       //基本輸入/輸出支持
            #include <iosfwd>     //輸入/輸出系統(tǒng)使用的前置聲明
            #include <iostream>
            #include <istream>     //基本輸入流
            #include <ostream>     //基本輸出流
            #include <queue>      //STL 隊列容器
            #include <set>       //STL 集合容器
            #include <sstream>     //基于字符串的流
            #include <stack>      //STL 堆棧容器    
            #include <stdexcept>    //標準異常類
            #include <streambuf>    //底層輸入/輸出支持
            #include <string>     //字符串類
            #include <utility>     //STL 通用模板類
            #include <vector>     //STL 動態(tài)數(shù)組容器
            #include <cwchar>
            #include <cwctype>

            using namespace std;

            //////////////////////////////////////////////////////////////////////////

            C99 增加

            #include <complex.h>   //復數(shù)處理
            #include <fenv.h>    //浮點環(huán)境
            #include <inttypes.h>  //整數(shù)格式轉換
            #include <stdbool.h>   //布爾環(huán)境
            #include <stdint.h>   //整型環(huán)境
            #include <tgmath.h>   //通用類型數(shù)學宏


            posted on 2010-03-26 21:39 LynnRaymond 閱讀(789) 評論(0)  編輯 收藏 引用 所屬分類: C/C++語言

            <2011年8月>
            31123456
            78910111213
            14151617181920
            21222324252627
            28293031123
            45678910

            導航

            統(tǒng)計

            常用鏈接

            留言簿

            隨筆分類

            隨筆檔案

            搜索

            最新評論

            閱讀排行榜

            評論排行榜

            91精品国产高清久久久久久91| 久久久久亚洲AV无码观看| 久久99国产综合精品| 99久久精品免费国产大片| 久久亚洲精品无码观看不卡| 久久久久久精品免费看SSS| AV无码久久久久不卡蜜桃| 久久久久国色AV免费观看| 精品久久人人爽天天玩人人妻| 久久99国产精品久久99| 久久精品国产欧美日韩99热| 777米奇久久最新地址| 亚洲国产精品一区二区三区久久 | 大香网伊人久久综合网2020| 亚洲国产精品嫩草影院久久| 2021少妇久久久久久久久久| 久久人人青草97香蕉| 久久免费精品视频| 久久亚洲私人国产精品| 久久精品国产欧美日韩99热| 激情五月综合综合久久69| 久久精品国产精品青草| 99蜜桃臀久久久欧美精品网站 | 国产精品综合久久第一页| 久久亚洲AV成人无码电影| 青青青青久久精品国产h久久精品五福影院1421 | 亚洲AV日韩精品久久久久| 久久久久久久综合综合狠狠| 久久免费线看线看| 亚洲天堂久久精品| 久久免费线看线看| 伊人久久大香线蕉影院95| 久久精品国产亚洲网站| 99re这里只有精品热久久| 精品久久8x国产免费观看| 久久国产精品99精品国产| 午夜精品久久久久久久| 东京热TOKYO综合久久精品| 国产精品一区二区久久国产| 国产综合久久久久| 亚洲国产精品久久久久婷婷老年|