常⽤linux及cc++的头⽂件
Linux 常⽤头⽂件
<assert.h>:ANSI C。提供断⾔,assert(表达式)
<glib.h>:GCC。GTK,GNOME的基础库,提供很多有⽤的函数,如有数据结构操作函数。
<dirent.h>:GCC。⽂件夹操作函数。struct dirent,struct  DIR,opendir(),closedir(),readdir(),readdir64()等 <ctype.h>:ANSI C。字符测试函数。isdigit(),islower()等
<errno.h>:ANSI C。查看错误代码errno是调试程序的⼀个重要⽅法。
<getopt.h>:处理命令⾏参数。getopt()
-------------------------
linux常⽤头⽂件如下:
POSIX标准定义的头⽂件
<dirent.h>        ⽬录项
<fcntl.h>        ⽂件控制
<fnmatch.h>    ⽂件名匹配类型
<glob.h>    路径名模式匹配类型
<grp.h>        组⽂件
<netdb.h>    ⽹络数据库操作
<pwd.h>        ⼝令⽂件
<regex.h>    正则表达式
<tar.h>        TAR归档值
<termios.h>    终端I/O
<unistd.h>    符号常量
<utime.h>    ⽂件时间
<wordexp.h>    字符扩展类型
-------------------------
<arpa/inet.h>    INTERNET定义
<net/if.h>    套接字本地接⼝
<netinet/in.h>    INTERNET地址族
<netinet/tcp.h>    传输控制协议定义
-------------------------
<sys/mman.h>    内存管理声明
<sys/select.h>    Select函数
<sys/socket.h>    套接字借⼝
<sys/stat.h>    ⽂件状态
<sys/times.h>    进程时间
<sys/types.h>    基本系统数据类型          <sys/un.h>    UNIX域套接字定义          <sys/utsname.h>    系统名
<sys/wait.h>    进程控制
------------------------------
POSIX定义的XSI扩展头⽂件
<cpio.h>    cpio归档值
<dlfcn.h>    动态链接
<fmtmsg.h>    消息显⽰结构
<ftw.h>        ⽂件树漫游
<iconv.h>    代码集转换使⽤程序
<langinfo.h>    语⾔信息常量
<libgen.h>    模式匹配函数定义
<monetary.h>    货币类型
<ndbm.h>    数据库操作
<nl_types.h>    消息类别
isalpha 函数<poll.h>    轮询函数
<search.h>    搜索表
<strings.h>    字符串操作
<syslog.h>    系统出错⽇志记录
<ucontext.h>    ⽤户上下⽂
<ulimit.h>    ⽤户限制
<utmpx.h>    ⽤户帐户数据库
-
----------------------------
<sys/ipc.h>    IPC(命名管道)
<sys/msg.h>    消息队列
<sys/resource.h>资源操作
<sys/sem.h>    信号量
<sys/shm.h>    共享存储
<sys/statvfs.h>    ⽂件系统信息
<sys/time.h>    时间类型
<sys/timeb.h>    附加的⽇期和时间定义
<sys/uio.h>    ⽮量I/O操作
------------------------------
POSIX定义的可选头⽂件
<aio.h>        异步I/O
<mqueue.h>    消息队列
<pthread.h>    线程
<sched.h>    执⾏调度
<semaphore.h>    信号量
<spawn.h>    实时spawn接⼝
<stropts.h>    XSI STREAMS接⼝
<trace.h>    事件跟踪
<!--[if !supportLists]-->3、 C/C++头⽂件⼀览
C
#include <assert.h> //设定插⼊点
#include <ctype.h> //字符处理
#include <errno.h> //定义错误码
#include <float.h> //浮点数处理
#include <iso646.h>        //对应各种运算符的宏          #include <limits.h> //定义各种数据类型最值的常量
#include <locale.h> //定义本地化C函数
#include <math.h> //定义数学函数
#include <setjmp.h>        //异常处理⽀持
#include <signal.h>        //信号机制⽀持
#include <stdarg.h>        //不定参数列表⽀持
#include <stddef.h>        //常⽤常量
#include <stdio.h> //定义输⼊/输出函数
#include <stdlib.h> //定义杂项函数及内存分配函数
#include <string.h> //字符串处理
#include <time.h> //定义关于时间的函数
#include <wchar.h> //宽字符处理及输⼊/输出
#include <wctype.h> //宽字符分类
传统C++
#include <fstream.h> //改⽤<fstream>
#include <iomanip.h> //改⽤<iomainip>
#include <iostream.h> //改⽤<iostream>
#include
<strstrea.h> //该类不再⽀持,改⽤<sstream>中的stringstream
————————————————————————————————          标准C++
#include <algorithm> //STL 通⽤算法
#include <bitset> //STL 位集容器
#include <cctype>          //字符处理
#include <cerrno>  //定义错误码
#include <cfloat> //浮点数处理
#include <ciso646>        //对应各种运算符的宏
#include <climits>  //定义各种数据类型最值的常量
#include <clocale>  //定义本地化函数
#include <cmath>  //定义数学函数
#include <complex> //复数类
#include <csignal>        //信号机制⽀持
#include <csetjmp>        //异常处理⽀持
#include <cstdarg>        //不定参数列表⽀持
#include <cstddef>        //常⽤常量
#include <cstdio>  //定义输⼊/输出函数
#include <cstdlib>  //定义杂项函数及内存分配函数
#include <cstring>  //字符串处理
#include <ctime>  //定义关于时间的函数
#include <cwchar>  //宽字符处理及输⼊/输出
#include <cwctype>  //宽字符分类
#include <deque> //STL 双端队列容器
#include <exception> //异常处理类
#include <fstream>  //⽂件输⼊/输出
#include <functional> //STL 定义运算函数(代替运算符)          #include <limits>  //定义各种数据类型最值常量
#include <list> //STL 线性列表容器
#include <locale>          //本地化特定信息
#include <map> //STL 映射容器
#include <memory>          //STL通过分配器进⾏的内存分配          #include <new>            //动态内存分配
#include <numeric>        //STL常⽤的数字操作
#include <iomanip>  //参数化输⼊/输出
#include <ios> //基本输⼊/输出⽀持
#include <iosfwd> //输⼊/输出系统使⽤的前置声明
#include <iostream>  //数据流输⼊/输出
#include <istream> //基本输⼊流
#include <iterator>        //STL迭代器

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。