Skip to content

Latest commit

 

History

History
40 lines (39 loc) · 1.21 KB

File metadata and controls

40 lines (39 loc) · 1.21 KB
title Linkage | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-language
ms.tgt_pltfrm
ms.topic article
dev_langs
C++
helpviewer_keywords
linkage [C++]
linkage [C++], identifier names and scope
ms.assetid 986ee549-2d6c-487a-9e3b-a1f643bc5bdc
caps.latest.revision 8
author mikeblome
ms.author mblome
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

Linkage

Identifier names can refer to different identifiers in different scopes. An identifier declared in different scopes or in the same scope more than once can be made to refer to the same identifier or function by a process called "linkage." Linkage determines the portions of the program in which an identifier can be referenced (its "visibility"). There are three kinds of linkage: internal, external, and no linkage.

See Also

Using extern to Specify Linkage