yfy2003 发表于 2004-12-19 17:16:00

C/C++头文件一览

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