程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> C++經常使用的#include頭文件總結

C++經常使用的#include頭文件總結

編輯:關於C++

C++經常使用的#include頭文件總結。本站提示廣大學習愛好者:(C++經常使用的#include頭文件總結)文章只能為提供參考,不一定能成為您想要的結果。以下是C++經常使用的#include頭文件總結正文


本文具體枚舉了C++所包括的頭文件的稱號及感化解釋,比擬合適初學者懂得一下,簡直每個C++文件的開端都要#include ,可年夜部門人都沒有去存眷#include 前面是甚麼,對比本文的解釋信任會對年夜家懂得C++構造若干有些贊助。

#include <deque>      //STL 雙端隊列容器
#include <exception>    //異常處置類
#include <fstream>    //文件輸出/輸入
#include <functional>   //STL 界說運算函數(取代運算符)
#include <limits>     //界說各類數據類型最值常量
#include <list>      //STL 線性列表容器
#include <map>       //STL 映照容器
#include <iomanip>    //參數化輸出/輸入
#include <ios>       //根本輸出/輸入支撐
#include <sstream>     //基於字符串的流
#include <stack>      //STL 客棧容器
#include <algorithm>    //STL 通用算法
#include <bitset>     //STL 位集容器
#include <cctype>     //字符處置
#include <stdexcept>    //尺度異常類
#include <streambuf>    //底層輸出/輸入支撐
#include <string>     //字符串類
#include <utility>     //STL 通用模板類
#include <vector>     //STL 靜態數組容器
#include <iosfwd>     //輸出/輸入體系應用的前置聲明
#include <cerrno>     //界說毛病碼
#include <clocale>    //界說當地化函數
#include <cmath>     //界說數學函數
#include <complex>     //單數類
#include <cstdio>     //界說輸出/輸入函數
#include <cstdlib>    //界說雜項函數及內存分派函數
#include <cstring>    //字符串處置
#include <ctime>     //界說關於時光的函數
#include <iostream>    //數據流輸出/輸入
#include <istream>     //根本輸出流
#include <ostream>     //根本輸入流
#include <queue>      //STL 隊列容器
#include <set>       //STL 聚集容器
#include <cwchar> //寬字符處置及輸出/輸入
#include <cwctype>     //寬字符分類
#include <complex.h>   //單數處置
#include <fenv.h>    //浮點情況
#include <inttypes.h>  //整數格局轉換
#include <stdbool.h>   //布爾情況
#include <stdint.h>   //整型情況
#include <tgmath.h>   //通用類型數學宏

讀者可對比中文說明加以懂得,並在C++法式開辟中疾速的記住它們,為今後編程供給方便。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved