现在的位置: 首页 > 综合 > 正文

#i nclude 与 #i nclude “file.h”的区别?

2013年10月30日 ⁄ 综合 ⁄ 共 2147字 ⁄ 字号 评论关闭

参考:http://www.cnblogs.com/aijianiula/archive/2012/04/23/2466116.html

       http://blog.csdn.net/godenlove007/article/details/7531521

#include<>格式引用标准库头文件,编译器从标准库目录开始搜索(包括编译器设置的路径)

#include“”格式:引用非标准库的头文件,编译器从用户的工作目录开始搜索

双引号表示:

先在程序的源文件所在的目录查找,如果未找到则去系统默认目录查找,通常用于包括程序作者编写的头文件;

首先在当前的源文件目录中查找,若未找到才到包含目录中去查找

尖括号表示:

知道系统默认目录或者括号内的路径查找,通常用于包含系统中自带的头文件。

包含文件目录中去查找(包括文件目录是用户在设置环境是设置的),而不在源文件目录去查找;

更进一步详细的说明


从microsoft网站上找到关于#include
Directive (C/C++)
的相关问题解释如下:

The #include directive
tells the preprocessor to treat the contents of a specified file as if those contents had appeared in the source program at the point where the directive appears.


Syntax Form

Action

Quoted form

The preprocessor searches for include files in the following order:

  1. In the same directory as the file that contains the #include statement.

  2. In the directories of any previously opened include files in the reverse order in which they were opened. The search starts from the directory of the include file that was opened last
    and continues through the directory of the include file that was opened first.

  3. Along the path specified by each /I compiler option.

  4. Along the paths specified by the INCLUDE environment variable.

Angle-bracket form

The preprocessor searches for include files in the following order:

  1. Along the path specified by each /I compiler option.

  2. When compiling from the command line, along the paths that are specified by the INCLUDE environment variable.

按照上述,二者的区别在于:当被include的文件路径不是绝对路径的时候,有不同的搜索顺序。

对于使用双引号“”包含的include文件,搜索的时候按以下顺序:

1.在包含当前include指令的文件所在的文件夹内搜索;

2.如果上一步找不到,则在之前已经使用include指令打开过的文件所在的文件夹内搜索,如果已经有多个被include的文件,则按照它们被打开的相反顺序搜索;

3.如果上一步找不到,则在编译器设置的include路径内搜索;

4.如果上一步找不到,则在系统的INCLUDE环境变量内搜索。

而对于使用半角尖括号<>包含的include文件,搜索的时候按以下顺序:

1.在编译器设置的include路径内搜索;

2.如果是在命令行中编译,则在系统的INCLUDE环境变量内搜索。

对于非绝对路径的文件使用上述两种include指令搜索时,一旦找到include命令所指定的文件,编译器就停止搜索。但是如果被include的文件是绝对路径的文件,比如
#include "D:\Program Files\OpenCV1.0\cv\include\cv.h" ,被包含的cv.h文件路径是绝对路径,这种情况下编译器直接按照这个给出的绝对路径是搜索。

以下为一个使用尖括号<>include的例子:

#include <stdio.h>

在这个例子里,我们向源程序代码中包含stdio.h文件,由于使用的是尖括号<>,预处理器搜索的时候,先在编译器设置的include路径内搜索,如果找不到,就在系统的INCLUDE环境变量内搜索。

以下为一个使用双引号" "include的例子:

    #include "defs.h"
	在这个例子里,我们向源程序代码中包含defs.h文件,由于使用的是双引号" ",预处理器搜索的时候,使用了这条指令的父文件所在文件夹内搜索,所谓的父文件,就是这条include指令所在的文件,如果找不到,在父文件的父文件所在文件夹内搜索,如果仍然找不到,则在编译器设置的include路径内搜索,如果还找不到,就在系统的INCLUDE环境变量内搜索。

抱歉!评论已关闭.