预编译阶段寻找头文件大致可分为两种情况:1)系统头文件,2)用户头文件。
示例:
1)用户头文件
/*@brief design and implements of demo-for-precompile-to-include.@author wen`xuanpei@email 15873152445@163.com(query for any question here)
*/
#pragma once
#ifndef __ARITHMETIC_H_
#define __ARITHMETIC_H_#define INT_A (10)
#define INT_B (20)#define max(a, b) ( (a) > (b) ? (a) : (b) )#endif
2)用户程序
/*@brief test demo-for-precompile-to-include? show you here@author wen`xuanpei@email 15873152445@163.com(query for any question here)
*/
#include "arithmetic.h"
#include <stdio.h>int main(){puts("hello world!\n");printf("max(%d,%d):%d\n", INT_A, INT_B, max(INT_A, INT_B));return 0;
}
3)编译(预编译+后续若干步骤)
g++ test.c
gcc test.c
g++ test.c -I./
gcc test.c -I./
g++ test.c -I./include/
gcc test.c -I./include/
尾声:
其中<stdio.h>就是系统头文件, "arithmetic.h"就是用户头文件。其中<系统头文件>会被编译器根据已有的配置目录自动找到,而"用户头文件”默认可在当前目录下找,或者需要用户自行指定所在目录,以便能够找到。