Local variable

локальная переменная переменная, область действия которой ограничена только тем блоком программы, в котором она определена. Использование локальных переменных позволяет уменьшить так называемые побочные эффекты Смотри также: scope, side effect, variable Например: Any variable defined within a method is a local variable and can't be used outside the method — Любая переменная, определённая внутри метода, является локальной и не может использоваться вне этого метода Антоним(ы): global variable

Англо-русский словарь компьютерных терминов

Local variable

математика локальная переменная

Англо-русский научно-технический словарь

Local variable

локальная переменная

Англо-русский политехнический словарь

Local variable

A variable with lexical scope, i.e. one which only exists in some particular part of the source code, typically within a block or a function or procedure body. This contrasts with a global variable, which is defined throughout the whole program. Code is easier to understand and modify when the scope of variables is as small as possible because it is easier to see how the variable is set and used. Code containing global variables is harder to modify because its behaviour may depend on and affect other sections of code that refer to that variable.

Free Online Dictionary of Computing