C/C++头文件一览
<FONT size=2>C、传统 C++<BR><BR>#include <assert.h> //设定插入点<BR>#include <ctype.h> //字符处理<BR>#include <errno.h> //定义错误码<BR>#include <float.h> //浮点数处理<BR>#include <fstream.h> //文件输入/输出<BR>#include <iomanip.h> //参数化输入/输出<BR>#include <iostream.h> //数据流输入/输出<BR>#include <limits.h> //定义各种数据类型最值常量<BR>#include <locale.h> //定义本地化函数<BR>#include <math.h> //定义数学函数<BR>#include <stdio.h> //定义输入/输出函数<BR>#include <stdlib.h> //定义杂项函数及内存分配函数<BR>#include <string.h> //字符串处理<BR>#include <strstrea.h> //基于数组的输入/输出<BR>#include <time.h> //定义关于时间的函数<BR>#include <wchar.h> //宽字符处理及输入/输出<BR>#include <wctype.h> //宽字符分类<BR><BR>//////////////////////////////////////////////////////////////////////////<BR><BR>标准 C++ (同上的不再注释)<BR><BR>#include <algorithm> //STL 通用算法<BR>#include <bitset> //STL 位集容器<BR>#include <cctype><BR>#include <cerrno><BR>#include <clocale><BR>#include <cmath><BR>#include <complex> //复数类<BR>#include <cstdio><BR>#include <cstdlib><BR>#include <cstring><BR>#include <ctime><BR>#include <deque> //STL 双端队列容器<BR>#include <exception> //异常处理类<BR>#include <fstream><BR>#include <functional> //STL 定义运算函数(代替运算符)<BR>#include <limits><BR>#include <list> //STL 线性列表容器<BR>#include <map> //STL 映射容器<BR>#include <iomanip><BR>#include <ios> //基本输入/输出支持<BR>#include <iosfwd> //输入/输出系统使用的前置声明<BR>#include <iostream><BR>#include <istream> //基本输入流<BR>#include <ostream> //基本输出流<BR>#include <queue> //STL 队列容器<BR>#include <set> //STL 集合容器<BR>#include <sstream> //基于字符串的流<BR>#include <stack> //STL 堆栈容器 <BR>#include <stdexcept> //标准异常类<BR>#include <streambuf> //底层输入/输出支持<BR>#include <string> //字符串类<BR>#include <utility> //STL 通用模板类<BR>#include <vector> //STL 动态数组容器<BR>#include <cwchar><BR>#include <cwctype><BR><BR>using namespace std;<BR><BR>//////////////////////////////////////////////////////////////////////////<BR><BR><BR>#include <complex.h> //复数处理<BR>#include <fenv.h> //浮点环境<BR>#include <inttypes.h> //整数格式转换<BR>#include <stdbool.h> //布尔环境<BR>#include <stdint.h> //整型环境<BR>#include <tgmath.h> //通用类型数学宏<BR><BR><BR>本文转自CSDN,作者WindsonZhL(风之子) </FONT><BR>
页:
[1]