Difference between revisions of "Local variable"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(External links)
 
Line 1: Line 1:
In [[computer science]], a '''local variable''' is a [[Variable (programming)|variable]] that is given [[local scope]].
+
In [[computer science]], a '''local variable''' is a [[Variable (computer science)|variable]] that is given [[local scope]].
  
 
== Description ==
 
== Description ==
Line 19: Line 19:
 
* [[Non-local variable]]
 
* [[Non-local variable]]
 
* [[Programming language]]
 
* [[Programming language]]
* [[Variable (programming)]]
+
* [[Variable (computer science)]]
  
 
==  External links ==
 
==  External links ==

Latest revision as of 15:13, 26 August 2016

In computer science, a local variable is a variable that is given local scope.

Description

Local variable references in the function or block in which it is declared override the same variable name in the larger scope.

In programming languages with only two levels of visibility, local variables are contrasted with global variables.

On the other hand, many ALGOL-derived languages allow any number of nested levels of visibility, with private variables, functions, constants and types hidden within them, either by nested blocks or nested functions.

Local variables are fundamental to procedural programming, and more generally modular programming: variables of local scope are used to avoid issues with side-effects that can occur with global variables.

See also

External links