Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 824 Bytes

File metadata and controls

14 lines (11 loc) · 824 Bytes
description Learn more about: Linkage
title Linkage
ms.date 11/04/2016
helpviewer_keywords
linkage [C++]
linkage [C++], identifier names and scope
ms.assetid 986ee549-2d6c-487a-9e3b-a1f643bc5bdc

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