Linux常用头文件

 

1、 一些头文件的作用:

 

   1: #include<assert.h>   //ANSI C。提供断言,assert(表达式) 
   2: #include <glib.h>     //GCC。GTK,GNOME的基础库,提供很多有用的函数,如有数据结构操作函数。使用glib只需要包含<glib.h> 
   3: #include <dirent.h> //GCC。文件夹操作函数。struct dirent,struct DIR,opendir(),closedir(),readdir(),readdir64()等 
   4: #include <ctype.h> //ANSI C。字符测试函数。isdigit(),islower()等 
   5: #include <errno.h> //ANSI C。查看错误代码errno是调试程序的一个重要方法。当linuc C api函数发生异
   6: //常时,一般会将errno变量(需include errno.h)赋一个整数值,不同的值表示不同的含义,可以通过查看该值推
   7: //测出错的原因。在实际编程中用这一招解决了不少原本看来莫名其妙的问题。比较麻烦的是每次都要去
   8: //linux源代码里面查找错误代码的含义,现在把它贴出来,以后需要查时就来这里看了。
   9: //来自linux 2.4.20-18的内核代码中的/usr/include/asm/errno.h 
  10: #include <getopt.h>:处理命令行参数。getopt()

2、POSIX标准定义的头文件

-------------------------

linux常用头文件如下:
   1:  <dirent.h>        目录项
   2:  <fcntl.h>         文件控制
   3:  <fnmatch.h>    文件名匹配类型
   4:  <glob.h>    路径名模式匹配类型
   5:  <grp.h>        组文件
   6:  <netdb.h>    网络数据库操作
   7:  <pwd.h>        口令文件
   8:  <regex.h>    正则表达式
   9:  <tar.h>        TAR归档值
  10:  <termios.h>    终端I/O
  11:  <unistd.h>    符号常量
  12:  <utime.h>    文件时间
  13:  <wordexp.h>    字符扩展类型

-------------------------

   1: <arpa/inet.h>    INTERNET定义   
   2: <net/if.h>    套接字本地接口  
   3: <netinet/in.h>    INTERNET地址族   
   4: <netinet/tcp.h>    传输控制协议定义

-------------------------

   1:  <sys/mman.h>    内存管理声明
   2:  <sys/select.h>    Select函数
   3:  <sys/socket.h>    套接字借口
   4:  <sys/stat.h>    文件状态
   5:  <sys/times.h>    进程时间
   6:  <sys/types.h>    基本系统数据类型
   7:  <sys/un.h>    UNIX域套接字定义
   8:  <sys/utsname.h>    系统名
   9:  <sys/wait.h>    进程控制

------------------------------
POSIX定义的XSI扩展头文件
   1:  <cpio.h>    cpio归档值 
   2:  <dlfcn.h>    动态链接
   3:  <fmtmsg.h>    消息显示结构
   4:  <ftw.h>        文件树漫游
   5:  <iconv.h>    代码集转换使用程序
   6:  <langinfo.h>    语言信息常量
   7:  <libgen.h>    模式匹配函数定义
   8:  <monetary.h>    货币类型
   9:  <ndbm.h>    数据库操作
  10:  <nl_types.h>    消息类别
  11:  <poll.h>    轮询函数
  12:  <search.h>    搜索表
  13:  <strings.h>    字符串操作
  14:  <syslog.h>    系统出错日志记录
  15:  <ucontext.h>    用户上下文
  16:  <ulimit.h>    用户限制
  17:  <utmpx.h>    用户帐户数据库 

-----------------------------

   1: <sys/ipc.h>    IPC(命名管道) 
   2: <sys/msg.h>    消息队列 
   3: <sys/resource.h>资源操作 
   4: <sys/sem.h>    信号量 
   5: <sys/shm.h>    共享存储 
   6: <sys/statvfs.h>    文件系统信息 
   7: <sys/time.h>    时间类型 
   8: <sys/timeb.h>    附加的日期和时间定义 
   9: <sys/uio.h>    矢量I/O操作 

------------------------------

POSIX定义的可选头文件

   1: <aio.h>        异步I/O 
   2: <mqueue.h>    消息队列 
   3: <pthread.h>    线程 
   4: <sched.h>    执行调度 
   5: <semaphore.h>    信号量 
   6: <spawn.h>     实时spawn接口 
   7: <stropts.h>    XSI STREAMS接口 
   8: <trace.h>     事件跟踪

3、 C/C++头文件一览


C

   1: #include <assert.h> //设定插入点 
   2: #include <ctype.h> //字符处理 
   3: #include <errno.h> //定义错误码 
   4: #include <float.h> //浮点数处理 
   5: #include <iso646.h>        //对应各种运算符的宏 
   6: #include <limits.h> //定义各种数据类型最值的常量 
   7: #include <locale.h> //定义本地化C函数 
   8: #include <math.h> //定义数学函数 
   9: #include <setjmp.h>        //异常处理支持 
  10: #include <signal.h>        //信号机制支持 
  11: #include <stdarg.h>        //不定参数列表支持 
  12: #include <stddef.h>        //常用常量 
  13: #include <stdio.h> //定义输入/输出函数 
  14: #include <stdlib.h> //定义杂项函数及内存分配函数 
  15: #include <string.h> //字符串处理 
  16: #include <time.h> //定义关于时间的函数 
  17: #include <wchar.h> //宽字符处理及输入/输出 
  18: #include <wctype.h> //宽字符分类
传统C++
   1: #include <fstream.h> //改用<fstream> 
   2: #include <iomanip.h> //改用<iomainip> 
   3: #include <iostream.h> //改用<iostream> 
   4: #include <strstrea.h> //该类不再支持,改用<sstream>中的stringstream 

————————————————————————————————

标准C++
   1: #include <algorithm> //STL 通用算法 
   2: #include <bitset> //STL 位集容器 
   3: #include <cctype>          //字符处理 
   4: #include <cerrno> //定义错误码 
   5: #include <cfloat> //浮点数处理 
   6: #include <ciso646>         //对应各种运算符的宏 
   7: #include <climits> //定义各种数据类型最值的常量 
   8: #include <clocale> //定义本地化函数 
   9: #include <cmath> //定义数学函数 
  10: #include <complex> //复数类 
  11: #include <csignal>         //信号机制支持 
  12: #include <csetjmp>         //异常处理支持 
  13: #include <cstdarg>         //不定参数列表支持 
  14: #include <cstddef>         //常用常量 
  15: #include <cstdio> //定义输入/输出函数 
  16: #include <cstdlib> //定义杂项函数及内存分配函数 
  17: #include <cstring> //字符串处理 
  18: #include <ctime> //定义关于时间的函数 
  19: #include <cwchar> //宽字符处理及输入/输出 
  20: #include <cwctype> //宽字符分类 
  21: #include <deque> //STL 双端队列容器 
  22: #include <exception> //异常处理类 
  23: #include <fstream> //文件输入/输出 
  24: #include <functional> //STL 定义运算函数(代替运算符) 
  25: #include <limits> //定义各种数据类型最值常量 
  26: #include <list> //STL 线性列表容器 
  27: #include <locale>          //本地化特定信息 
  28: #include <map> //STL 映射容器 
  29: #include <memory>          //STL通过分配器进行的内存分配 
  30: #include <new>             //动态内存分配 
  31: #include <numeric>         //STL常用的数字操作 
  32: #include <iomanip> //参数化输入/输出 
  33: #include <ios> //基本输入/输出支持 
  34: #include <iosfwd> //输入/输出系统使用的前置声明 
  35: #include <iostream> //数据流输入/输出 
  36: #include <istream> //基本输入流 
  37: #include <iterator>        //STL迭代器 
  38: #include <ostream> //基本输出流 
  39: #include <queue> //STL 队列容器 
  40: #include <set> //STL 集合容器 
  41: #include <sstream> //基于字符串的流 
  42: #include <stack> //STL 堆栈容器 
  43: #include <stdexcept> //标准异常类 
  44: #include <streambuf> //底层输入/输出支持 
  45: #include <string> //字符串类 
  46: #include <typeinfo>        //运行期间类型信息 
  47: #include <utility> //STL 通用模板类 
  48: #include <valarray>        //对包含值的数组的操作 
  49: #include <vector> //STL 动态数组容器 

————————————————————————————————

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> //通用类型数学宏

你可能感兴趣的:(Linux常用头文件)