Types of Linkage

The way the names of objects and functions are shared between translation units is called linkage. These names can have:

  • Internal linkage, in which case they refer only to program elements inside their own translation units; they are not shared with other translation units.

    The same name in another translation unit may refer to a different object or a different class. Names with internal linkage are sometimes referred to as being local to their translation units.

    An example declaration of a name with internal linkage is:

    static int i;   // The static keyword ensures internal linkage.
    
  • External linkage, in which case they can refer to program elements in any translation unit in the program — the program element is shared among the translation units.

    The same name in another translation unit is guaranteed to refer to the same object or class. Names with external linkage are sometimes referred to as being global.

    An example declaration of a name with external linkage is:

    extern int i;
    
  • No linkage, in which case they refer to unique entities. The same name in another scope may not refer to the same object. An example is an enumeration. (Note, however, that you can pass a pointer to an object with no linkage. This makes the object accessible in other translation units.)

See Also

Reference

Program and Linkage