zoukankan      html  css  js  c++  java
  • 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环境变量内搜索。
  • 相关阅读:
    【RS】Automatic recommendation technology for learning resources with convolutional neural network
    卷积神经网络的入门
    Debug 路漫漫-10:AttributeError: 'Embedding' object has no attribute 'get_shape'
    Debug 路漫漫-09:构建CNN时维度不一致问题
    Debug 路漫漫-08:Keras 版本升级函数变换导致的问题
    springboot 过滤器、拦截器、消息转换器、切片执行顺序 及区别
    java InputStream读取数据问题
    Springboot 2-OAuth 2修改登录加密方式
    Spring Boot Security Oauth2之客户端模式及密码模式实现
    oauth2.0通过JdbcClientDetailsService从数据库读取相应的配置
  • 原文地址:https://www.cnblogs.com/dsky/p/2673174.html
Copyright © 2011-2022 走看看