laikaou 发表于 2014-3-13 20:28:51

如何理解C语言的头文件

怎么去理解C语言的头文件呀?看不懂有木有……
比如stdio.h的。
#ifndef _STDIO_H_
#define _STDIO_H_
/* All the headers include this file. */
#include <_mingw.h>
#ifndef RC_INVOKED
#define __need_size_t
#define __need_NULL
#define __need_wchar_t
#define __need_wint_t
#include <stddef.h>
#define __need___va_list
#include <stdarg.h>
#endif /* Not RC_INVOKED */

结构体定义

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
typedef struct _iobuf
{
char* _ptr;
int _cnt;
char* _base;
int _flag;
int _file;
int _charbuf;
int _bufsiz;
char* _tmpfname;
} FILE;
#endif /* Not _FILE_DEFINED */
/*
* The standard file handles
*/
#ifndef __DECLSPEC_SUPPORTED
extern FILE (*_imp___iob)[]; /* A pointer to an array of FILE */
#define _iob (*_imp___iob) /* An array of FILE */
#else /* __DECLSPEC_SUPPORTED */
__MINGW_IMPORT FILE _iob[]; /* An array of FILE imported from DLL. */
#endif /* __DECLSPEC_SUPPORTED */
#define stdin (&_iob)
#define stdout (&_iob)
#define stderr (&_iob)

oggplay 发表于 2014-3-13 20:42:17

看不懂先别看这些,这些都是为不同机器和不同系统移植用的,慢慢来

laikaou 发表于 2014-3-15 09:02:03

oggplay 发表于 2014-3-13 20:42 static/image/common/back.gif
看不懂先别看这些,这些都是为不同机器和不同系统移植用的,慢慢来

噢,谢谢呀。有时候,看老师讲课的时候,他会返回头文件里面给我们看些东西来着。

仰望天上的光 发表于 2014-3-15 09:46:53

最简单的理解就是:你把
#include <stdio.h>这句去掉,然后把
stdio.h这个文件赋值粘帖到原先#include <stdio.h>这句的地方,就OK了

至于头文件里的内容,要理解就要学很多的C语言知识,不可能一两句话就说明白。

zszsdzs 发表于 2014-3-15 10:07:43

不懂!!!

抢地主 发表于 2014-3-15 10:51:50

oggplay 发表于 2014-3-13 20:42 static/image/common/back.gif
看不懂先别看这些,这些都是为不同机器和不同系统移植用的,慢慢来

支持楼主。。。
页: [1]
查看完整版本: 如何理解C语言的头文件