Why does double declaration of structs causes a compilation error, while double definitions of functions causes a linking error?
|
Because functions definitions are included in executable at link time but decalration or syntax check all are done at compile time Consider one thing also when you are calling any function and compiler is not able to find the declaration of function then it will generate warning as To remove this warning message we provide forward declaration of func, Do you think why does this happen ? It happens because compiler did not find that But building of final executable is done at link time and then linker started looking for function defition of
Note: any external symbols are resolved at link time On gcc for only compilation use this : (this may vary according to compiler)
then try to link it and make executable
|
||||
|
|
|
The standard doesn't say when an error should be reported - it's up to the compiler, but basically it's because that's when the errors are caught. First, the compiler parses the files. It's easy to see if a Second, it links the object files together (linking). Only now can it tell that the same symbol was exported multiple times, because that's when the error occurs per-say. |
|||
|
|
|
When compiling a program the compiler needs to know which exact definition of a structure to use. But we only need to know which exact function to use only when we are trying to link the program. So if a structure is defined twice compiler is confused during compilation hence complains at compile time. For a function during compile time you can have multiple definitions but confusion arises only during linking so it complains during linking. |
|||
|
|
|
What you are saying is not necessarily true. If you "inline" the function definition in a header and then subsequently write its definition in the compilation unit you will get an error
The case you are referring to is when two different compilation units define (or see a definition) of the same function, so there is no compilation error in any individual compilation unit, it is the combination of them that causes the link error. Note incidentally that this is where the keyword |
|||
|
|

