In the C and C++ programming languages, what is the difference between using angle brackets and using quotes in an include statement, as follows?
#include <filename>#include "filename"
|
In the C and C++ programming languages, what is the difference between using angle brackets and using quotes in an
|
||||
|
|
|
The only way to know is to read your implementation's documentation. In the C standard, section 6.10.2, paragraphs 2 to 4 state:
|
|||||||||||
|
|
The #include directive causes a copy of a specified file to be included in the place of the directive. The two forms of the #include directive are:
The difference between these two is the location the preprocessor searches for the file to be included. If the file name is enclosed in quotes, the preprocessor searches in the same directory as the file being compiled for the file to be included. This method is normally used to include programmer defined headers. If the file name is enclosed in brackets - used for standard library headers - the search is performed in an implementation dependent manner, normally through predesignated directories. |
|||||||||||||||||||||
|
|
The sequence of characters between < and > uniquely refer to a header, which isn't necessarily a file. Implementations are pretty much free to use the character sequence as they wish. (Mostly, however, just treat it as a file name and do a search in the include path, as the other posts state.) If the Also, a third form exists and is used when the |
|||||||||||||||
|
|
Some good answers here make references to the C standard but forgot the POSIX standard, especially the specific behavior of the c99 (e.g. C compiler) command. According to The Open Group Base Specifications Issue 7,
So, in a POSIX compliant environment, with a POSIX compliant C compiler, |
|||
|
|
|
It does:
and
|
|||||
|
|
The |
||||
|
|
|
At least for GCC version <= 3.0, the angle-bracket form does not generate a dependency between the included file and the including one. So if you want to generate dependency rules (using the GCC -M option for exemple), you must use the quoted form for the files that should be included in the dependency tree. |
|||
|
|
example: the filename here is Seller.h
In the class implementation (ex. Seller.cpp, and in other files that will use the file Seller.h), the header defined by the user should now be included, as follows:
|
|||
|
|
|
#include<> is for predefined header files If the header file is predefined then you would simply write the header file name in angular brackets, and it would look like this (assuming we have a predefined header file name iostream): #include <iostream> #include ” ” is for header files the programmer defines If you (the programmer) wrote your own header file then you would write the header file name in quotes. So, suppose you wrote a header file called myfile.h, then this is an example of how you would use the include directive to include that file: #include "myfile.h" |
|||
|
|
|
I believe that headers included in double-quotes will be looked for the in same system paths as angle-bracketed includes if they are not found in the current directory. |
|||
|
|
|
For This is especially important if the file is not in current working directory. Most compilers seem to have -I. by default or added by makefile, so for current working directory "" and <> are equivalent. Not so when the C file is elsewhere. |
|||||
|
|
I have used both interchangeably and never noticed any difference (with Visual C++). My conclusion is that you can assume they are equal. |
|||||
|