Please tell me what happens if I include iostream or any other header file twice in my file . I know the compiler does not throw error. Will the code gets added twice or what happens internally ? What actually happens when we include a header file ?
|
|
Include guard prevents the content of the file from being actually seen twice by the compiler. Include guard is basically a set of preprocessor's conditional directives at the beginning and end of a header file:
Now if you include the file twice then first time round macro To avoid collisions the name of the macro used in the include guard is made dependent on the name of the header file. |
|||||
|
|
It simply gets skipped over, due to preprocessor code along the following lines:
So if you include twice, then |
|||
|
|
|
Header files are simple beasts. When you
|
|||
|
|
|
No it doesn't adds twice. You may include as many times as you wish but It is considered only once. It is handled by marco |
|||
|
|
|
It depends. With the exception of The standard practice for avoiding multiple definitions in such cases is to use include guards: all of the C++ code in the header will be enclosed in something like:
Obviously, each header needs a different name. Within an application,
you can generally establish conventions based on the filename and
location; something like A system library can, of course, use reserved symbols (e.g. a symbol
starting with an underscore followed by a capital letter) here, to
guarantee that there is no conflict. Or it can use some entirely
different, implementation dependent technique. Microsoft, for example,
uses a compiler extension |
|||
|
|