« Liaison de nom » : différence entre les versions
m (Remplacement de texte — « Termes privilégiés » par « Français ») |
(nouveau terme) Balise : Éditeur de wikicode 2017 |
||
Ligne 1 : | Ligne 1 : | ||
== Domaine == | == Domaine == | ||
[[Category:Vocabulary]] | [[Category:Vocabulary]]<br> | ||
[[Category:Informatique]]Informatique<br> | |||
[[Catégorie:Langage de programmation]]Langage de programmation<br> | |||
[[Category:Coulombe]]Coulombe<br> | |||
[[Catégorie:Scotty]]<br> | |||
== Définition == | == Définition == | ||
Dans un langage de programmation, la liaison de nom désigne l'assignation d'un nom (ou identifiant) à une entité de programmation comme une variable, une donnée ou structure de données, ou un bout de code. La liaison de nom diffère selon la définition de la portée des variables (en anglais variable scope), c'est-à-dire l'étendue du programme où une variable est visible. | |||
== Français == | == Français == | ||
liaison de nom | |||
== Anglais == | == Anglais == |
Version du 24 avril 2019 à 20:01
Domaine
Informatique
Langage de programmation
Coulombe
Définition
Dans un langage de programmation, la liaison de nom désigne l'assignation d'un nom (ou identifiant) à une entité de programmation comme une variable, une donnée ou structure de données, ou un bout de code. La liaison de nom diffère selon la définition de la portée des variables (en anglais variable scope), c'est-à-dire l'étendue du programme où une variable est visible.
Français
liaison de nom
Anglais
Name binding
In programming languages, name binding is the association of entities (data and/or code) with identifiers.[1] An identifier bound to an object is said to reference that object. Machine languages have no built-in notion of identifiers, but name-object bindings as a service and notation for the programmer is implemented by programming languages. Binding is intimately connected with scoping, as scope determines which names bind to which objects – at which locations in the program code (lexically) and in which one of the possible execution paths (temporally).
Use of an identifier id in a context that establishes a binding for id is called a binding (or defining) occurrence. In all other occurrences (e.g., in expressions, assignments, and subprogram calls), an identifier stands for what it is bound to; such occurrences are called applied occurrences.
Contributeurs: Claude Coulombe, Jacques Barolet, wiki