I want to understand the external linkage and internal linkage and their difference. Also I want to know any const. variable in internally link by default unless otherwise stated as extern. What does this mean.
|
|
|
When you write an implementation file (.cpp or .cxx or something else) your compiler generates a translation unit. This is the object file from your implementation file plus all the headers you *#include*d in it. Internal linkage refers to everything only in scope of a translation unit. External linkage refers to things that exist beyond a particular translation unit. In other words, accessable through the whole program, which is the combination of all translation units (or object files). |
|||||
|
|
As dudewat said external linkage means the symbol (function or global variable) is accessible throughout your program and internal linkage means that it's only accessible in one translation unit. You can explicitly control the linkage of a symbol by using the
Note that instead of using
|
|||||||||||||
|
Consider following example: 1.cpp
2.cpp
NB: The keyword static plays a double role. When used in the definitions of global variables, it specifies internal linkage. When used in the definitions of the local variables, it specifies that the lifetime of the variable is going to be the duration of the program instead of being the duration of the function. Hope that helps! |
|||
|
|
In terms of 'C' (Because static keyword has different meaning between 'C' & 'C++')Lets talk about different scope in 'C' SCOPE: It is basically how long can I see something and how far.
By default all functions are global. In case, if you need to hide some functions in a file from outside, you can prefix the static keyword to the function. :-) |
|||||||||
|
