In C++ what is the purpose of header guard in C++ program.
From net i found that is for preventing including files again and again but how do header guard guarantee this.
|
In C++ what is the purpose of header guard in C++ program. From net i found that is for preventing including files again and again but how do header guard guarantee this. |
|||
|
|
The guard header is to prevent problems if header file is included more than once; e.g.
The first time this file is For this to work properly, the The reason this kind of thing is necessary is that it is illegal in C / C++ to define a type or function with the same name more than once in a compilation unit. The guard allows a header file to In short, it doesn't prevent you from |
||||
|
|
|
Wikipedia gives a very good explanation of how include guards work. |
|||
|
|
|
The purpose of header guards is to prevent issues where some code may appear only once per translation unit. One example is a struct. You cannot redefine a struct even if the second definition is identical. So, if you try to compile the following:
The compiler will fail because of the redefinition. It can be hard to guarantee you only include a header one time (this happens when headers include other headers). If your header has struct definition, this will cause the compile to fail. Header guards are the easy trick so that even if a header is included multiple times, it's contents only appear a single time. |
|||
|
|