C中,有没有类似C++中的#include<bits/stdc++.h>,包含所有头文件的头文件。 10

 我来答
匿名用户
推荐于2017-11-27
展开全部

= =就算包含了C标准库的所有头文件也没多大意义,实际编程的时候免不了要用到<unistd.h>/<pthread.h>等等。此外把那么多标识符引入全局空间也增加编译器负担,且增加不小心与标准库组件重名的可能


觉得有必要包含所有C标准库头文件的话自己写一个就是了

#include <assert.h> //这个的行为依赖用户是否定义NDEBUG宏……
#include <ctype.h>
#include <errno.h>
#include <float.h>
#include <limits.h>
#include <locale.h>
#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>
#ifdef __STDC_VERSION__
#if __STDC_VERSION__ >= 199409L
#include <iso646.h>
#include <wchar.h>
#include <wctype.h>
#if __STDC_VERSION__ >= 199901L
#if ! __STDC_NO_COMPLEX__ 
#include <complex.h>
#endif
#include <fenv.h>
#include <inttypes.h>
#include <stdbool.h>
#include <stdint.h>
#include <tgmath.h>
#if __STDC_VERSION__ >= 201112L
#include <stdalign.h>
#if ! __STDC_NO_ATOMICS__
#include <stdatomic.h>
#endif
#include <stdnoreturn.h>
#if ! __STDC_NO_THREADS__
#include <threads.h>
#endif
#include <uchar.h>
#endif
#endif
#endif
#endif
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式