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"
|
feedback
|
|
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:
| ||||
|
feedback
|
|
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. | |||||||||||||||
feedback
|
|
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. (Most, however, just treat it as a filename and do a search in the include path, as the other posts state.) If the #include "file" form is used, the implementation first looks for a file of the given name, if supported. If not (supported), or if the search fails, the implementation behaves as though the other (#include <file>) form was used. Also, a third form exists and is used when the #include directive doesn't match either of the forms above. In this form, some basic preprocessing (such as macro expansion) is done on the "operands" of the #include directive, and the result is expected to match one of the two other forms. | |||||||||||||
feedback
|
|
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. | |||
|
feedback
|
|
The | ||||
|
feedback
|
|
It does:
and
| |||
feedback
|
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:
| |||
|
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||||
feedback
|
|
I have used both interchangeably and never noticed any difference (with Visual C++). My conclusion is that you can assume they are equal. | |||
|
feedback
|