#include
This variant is used for system header files. It searches for a file named file in a standard list of system directories. You can prepend directories to this list with the -I option (see Invocation).
시스템 헤더를 include하는데 사용합니다.
#include "file"
This variant is used for header files of your own program. It searches for a file named file first in the directory containing the current file, then in the quote directories and then the same directories used for . You can prepend directories to the list of quote directories with the -iquote option.
유저의 헤더를 include하는데 사용합니다.
"" 는 상대 경로라고 보시면 됩니다. 예를 들어 #include "version.h" 는 ./version.h 를 찾습니다. 하지만 #include 는 /usr/include 와 같이 compiler 의 기본 INCLUDE header directory 또는 -I 옵션을 지정된 디렉토리에서 version.h 를 찾습니다.
그러므로, compiler 에 -I 옵션을 이용하여 특졍 경로의 사용자가 만든 header 도 <> 로 호출을 할 수가 있습니다.
include path의 root 디렉토리가 다릅니다.
컴파일 할 때 gcc -I/usr/include 와 같은 형식으로 시스템에서 가지고 있는 헤더 디렉토리가 컴파일러로 전달됩니다..
그래서 #include 라고 했을 때 /usr/include/stdio.h파일을 가져오게 되는 것이죠..
하지만. #include "stdio.h"라고 했을 때는 현재 컴파일 중인 디렉토리에서 stdio.h를 찾게 됩니다.
다시 말해서 아래의 두 문장은 같은 동작을 합니다.
#include
#include "/usr/include/stdio.h"
물론.. 헤더파일들이 /usr/include 에 있는 경우에 말이죠..
gcc의 -I 옵션을 살펴보시면 조금 도움이 될 듯 싶습니다.
""가 <> 보다 범위가
""가 <> 보다 범위가 넓습니다.
일단 두개의 경로 A와 B가 있다고 칩시다.
<>는 컴파일러가 미리 정해놓은 위치 A에서 헤더파일을 찾습니다.
""는 컴파일러가 미리 정해놓은 위치 B에서 헤더파일을 찾습니다. 만약 찾을 수 없으면, A에서 다시 찾습니다.
보통 A는 /usr/include/ 혹은
C:\Program Files\Microsoft Visual Studio 8\VC\include 이런데고
B는 소스파일이 있는 위치입니다.
감사합니다
좋은 정보 감사합니다!
https://gcc.gnu.org/onlinedoc
https://gcc.gnu.org/onlinedocs/cpp/Include-Syntax.html
#include
This variant is used for system header files. It searches for a file named file in a standard list of system directories. You can prepend directories to this list with the -I option (see Invocation).
시스템 헤더를 include하는데 사용합니다.
#include "file"
This variant is used for header files of your own program. It searches for a file named file first in the directory containing the current file, then in the quote directories and then the same directories used for . You can prepend directories to the list of quote directories with the -iquote option.
유저의 헤더를 include하는데 사용합니다.
어디선가 본것
<>는 c/c++ 이 기본적으로 지원 하는 것, " "는 사용자가 만든 것이라고 들은 적이 있습니다.
"" 는 상대 경로라고 보시면 됩니다. 예를 들어
"" 는 상대 경로라고 보시면 됩니다. 예를 들어 #include "version.h" 는 ./version.h 를 찾습니다. 하지만 #include 는 /usr/include 와 같이 compiler 의 기본 INCLUDE header directory 또는 -I 옵션을 지정된 디렉토리에서 version.h 를 찾습니다.
그러므로, compiler 에 -I 옵션을 이용하여 특졍 경로의 사용자가 만든 header 도 <> 로 호출을 할 수가 있습니다.
댓글 달기