Global variable

From Wiki @ Karl Jones dot com
Revision as of 15:21, 26 August 2016 by Karl Jones (Talk | contribs) (Created page with "In computer programming, a '''global variable''' is a variable with global scope, meaning that it is visible (hence accessible) throughout...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

In computer programming, a global variable is a variable with global scope, meaning that it is visible (hence accessible) throughout the program, unless shadowed.

Description

The set of all global variables is known as the global environment or global state.

In compiled languages, global variables are generally static variables, whose extent (lifetime) is the entire runtime of the program, though in interpreted languages (including command-line interpreters), global variables are generally dynamically allocated when declared, since they are not known ahead of time.

In some languages, all variables are global, or global by default, while in most modern languages variables have limited scope, generally lexical scope, though global variables are often available by declaring a variable at the top level of the program.

In other languages, however, global variables do not exist; these are generally modular programming languages that enforce a module structure, or class-based object-oriented programming languages that enforce a class structure.

See also

External links