程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++頭文件包含內容概覽

C++頭文件包含內容概覽

編輯:C++入門知識

C++中對於頭文件的應用是一個比較復雜的步驟,其中有很多比較重要的內容值得我們去不斷的學習。在這裡我們先來為大家總結一下C++頭文件中的各種類型,以方便大家將來的應用。

  • C++ Bost庫基本內容概述
  • C++內存使用機制基本概念詳解
  • 幾種不同C++繼承方式簡介
  • C++標准輸入輸出應用技巧解析
  • C++初始化和賦值區別解析

C++頭文件之C、傳統 C++

  1. #include < assert.h>//設定插入點   
  2. #include < ctype.h> //字符處理   
  3. #include < errno.h> //定義錯誤碼   
  4. #include < float.h> //浮點數處理   
  5. #include < fstream.h>  //文件輸入/輸出   
  6. #include < iomanip.h>  //參數化輸入/輸出   
  7. #include < iostream.h> //數據流輸入/輸出   
  8. #include < limits.h>//定義各種數據類型最值常量   
  9. #include < locale.h>//定義本地化函數   
  10. #include < math.h> //定義數學函數   
  11. #include < stdio.h> //定義輸入/輸出函數   
  12. #include < stdlib.h>//定義雜項函數及內存分配函數   
  13. #include < string.h>//字符串處理   
  14. #include < strstrea.h> //基於數組的輸入/輸出   
  15. #include < time.h> //定義關於時間的函數   
  16. #include < wchar.h> //寬字符處理及輸入/輸出   
  17. #include < wctype.h>//寬字符分類  

C++頭文件之標准 C++ 同上的不再注釋)

  1. #include < algorithm>  //STL 通用算法   
  2. #include < bitset> //STL 位集容器   
  3. #include < cctype>   
  4. #include < cerrno>   
  5. #include < clocale>   
  6. #include < cmath>   
  7. #include < complex> //復數類   
  8. #include < cstdio>   
  9. #include < cstdlib>   
  10. #include < cstring>   
  11. #include < ctime>   
  12. #include < deque>  //STL 雙端隊列容器   
  13. #include < exception>  //異常處理類   
  14. #include < fstream>   
  15. #include < functional> //STL 定義運算函數代替運算符)   
  16. #include < limits>   
  17. #include < list>//STL 線性列表容器   
  18. #include < map> //STL 映射容器   
  19. #include < iomanip>   
  20. #include < ios> //基本輸入/輸出支持   
  21. #include < iosfwd> //輸入/輸出系統使用的前置聲明   
  22. #include < iostream>   
  23. #include < istream> //基本輸入流   
  24. #include < ostream> //基本輸出流   
  25. #include < queue>  //STL 隊列容器   
  26. #include < set> //STL 集合容器   
  27. #include < sstream> //基於字符串的流   
  28. #include < stack>  //STL 堆棧容器   
  29. #include < stdexcept>  //標准異常類   
  30. #include < streambuf>  //底層輸入/輸出支持   
  31. #include < string> //字符串類   
  32. #include < utility> //STL 通用模板類   
  33. #include < vector> //STL 動態數組容器   
  34. #include < cwchar>   
  35. #include < cwctype>   
  36. using namespace std;  

C++頭文件之C99 增加

  1. #include < complex.h> //復數處理   
  2. #include < fenv.h>//浮點環境   
  3. #include < inttypes.h>//整數格式轉換   
  4. #include < stdbool.h> //布爾環境   
  5. #include < stdint.h> //整型環境   
  6. #include < tgmath.h> //通用類型數學宏  

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