I'm playing around with gmock and noticed it contains this line:
#include <tuple>
I would have expected tuple.h.
When is it okay to exclude the extension, and does it give the directive a different meaning?
|
1
|
I'm playing around with gmock and noticed it contains this line:
I would have expected When is it okay to exclude the extension, and does it give the directive a different meaning?
|
|||
|
|
|
|
The C++ standard headers do not have a ".h" suffix. I believe the reason is that there were many, different pre-standard implementations that the standard would break. So instead of requiring that vendors change their exiting "iostream.h" (for example) header to be standards compliant (which would break their existing user's code), the standards committee decided that they'd drop the suffix (which, I believe no then existing implementation had already done). That way, existing, non-standard programs would continue to work using the vendor's non-standard libraries. When the user wanted to make their programs standards compliant, one of the steps they would take is to change the " So
As other answers have mentioned, writers of non-standard libraries may choose either naming convention, but I'd think they would want to continue using ".h" or ".hpp" (as Boost has done) for a couple reasons:
Note that a similar problem happened when the committee went to add hash maps to the STL - they found that there are already many (different) Note that for the 'C' headers, C++ allows you to include either a |
||||||
|
|
|
If the file is named It's as simple as that. You are not omitting any extension. |
||
|
|
|
|
It's including a file that is simply named "tuple" -- the file itself lacks an extension. The putative standard for C++ include files is to name them without the .h extension; many library writers follow this standard (STL,etc) but some do not. |
||||
|
|
|
My understanding was that #include tuple would "point" to tuple.h. Check this out: iostream vs iostream.h |
||||||
|
|
|
There is nothing special going on. The file is simply named The reason for this...that standard library headers have no file extention are because of Namespaces were added to the C++ standard late in the game with the C++98 standard, including the When the standard library got moved to the This way, old code that would |
||
|
|
|
|
In additional to the fine answers already posted, it should be noted that the C++ standard does not require the directive "#include |
|||
|
|
|
|
Folks, I think the deal is: #include <lib> allways prepends /lib/include to the search path (the .h is infrerred) whereas #include <lib.h> searches just -I<pathname>. Please note that I could be wrong... It's just how I think it works (in Forte cc on Solaris). |
||
|