Caesar AI Atlas

Связывание имени

Caesar AI Atlas Definition

Связывание имени — association of an identifier with an object, value, variable, function или другой entity в computing system. Оно определяет, на что ссылается name в заданной scope и context.

Other Definitions

Связывание имени Source

In programming languages, name binding is the association of entities (data and/or code) with identifiers. 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 <code>id</code> in a

Related Terms