In
computer programming
Computer programming is the process of performing a particular computation (or more generally, accomplishing a specific computing result), usually by designing and building an executable computer program. Programming involves tasks such as anal ...
, a global variable is a variable with global
scope
Scope or scopes may refer to:
People with the surname
* Jamie Scope (born 1986), English footballer
* John T. Scopes (1900–1970), central figure in the Scopes Trial regarding the teaching of evolution
Arts, media, and entertainment
* CinemaS ...
, meaning that it is visible (hence accessible) throughout the program, unless
shadowed. The set of all global variables is known as the ''global environment'' or ''global state.'' In
compiled languages
A compiled language is a programming language whose implementations are typically compilers (translators that generate machine code from source code), and not interpreters (step-by-step executors of source code, where no pre-runtime translation t ...
, global variables are generally
static variables, whose
extent (lifetime) is the entire runtime of the program, though in
interpreted languages (including
command-line interpreter
A command-line interpreter or command-line processor uses a command-line interface (CLI) to receive command (computing), commands from a user in the form of lines of text. This provides a means of setting parameters for the environment, invokin ...
s), 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
In computer programming, the scope of a name binding (an association of a name to an entity, such as a variable) is the part of a program where the name binding is valid; that is, where the name can be used to refer to the entity. In other part ...
, 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.
Use
Interaction mechanisms with global variables are called global environment (see also global state) mechanisms. The global environment paradigm is contrasted with the
local environment
Local may refer to:
Geography and transportation
* Local (train), a train serving local traffic demand
* Local, Missouri, a community in the United States
* Local government, a form of public administration, usually the lowest tier of administrat ...
paradigm, where all variables are
local with no
shared memory (and therefore all interactions can be reconducted to
message passing).
Global variables are used extensively to pass information between sections of code that do not share a caller/callee relation like concurrent threads and signal handlers. Languages (including C) where each file defines an implicit namespace eliminate most of the problems seen with languages with a global
namespace though some problems may persist without proper encapsulation. Without proper locking (such as with a
mutex), code using global variables will not be
thread-safe except for read only values in
protected memory.
Environment variables
Environment variables are a facility provided by some
operating systems. Within the OS's
shell (
ksh in
Unix,
bash in
Linux
Linux ( or ) is a family of open-source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991, by Linus Torvalds. Linux is typically packaged as a Linux distribution, which i ...
,
COMMAND.COM in
DOS and
CMD.EXE in
Windows
Windows is a group of several proprietary graphical operating system families developed and marketed by Microsoft. Each family caters to a certain sector of the computing industry. For example, Windows NT for consumers, Windows Server for ...
) they are a kind of variable: for instance, in unix and related systems an ordinary variable becomes an environment variable when the
export
keyword is used. Program code other than shells has to access them by
API calls, such as
getenv()
and
setenv()
.
They are local to the process in which they were set. That means if we open two terminal windows (Two different processes running shell) and change value of environment variable in one window, that change will not be seen by other window.
When a child process is created, it inherits all the environment variables and their values from the parent process. Usually, when a program calls another program, it first creates a child process by
forking, then the child adjusts the environment as needed and lastly the child
replaces itself with the program to be called. Child processes therefore cannot use environment variables to communicate with their peers, avoiding the action at a distance problem.
Global-only and global-by-default
A number of non-
structured languages, such as (early versions of)
BASIC
BASIC (Beginners' All-purpose Symbolic Instruction Code) is a family of general-purpose, high-level programming languages designed for ease of use. The original version was created by John G. Kemeny and Thomas E. Kurtz at Dartmouth College ...
,
COBOL and
Fortran I (1956) only provide global variables. Fortran II (1958) introduced subroutines with local variables, and the COMMON keyword for accessing global variables. Usage of COMMON in FORTRAN continued in FORTRAN 77, and influenced later languages such as PL/SQL. Named COMMON groups for globals behave somewhat like structured namespaces. Variables are also global by default in
Forth
Forth or FORTH may refer to:
Arts and entertainment
* ''forth'' magazine, an Internet magazine
* ''Forth'' (album), by The Verve, 2008
* ''Forth'', a 2011 album by Proto-Kaw
* Radio Forth, a group of independent local radio stations in Scotla ...
,
Lua
Lua or LUA may refer to:
Science and technology
* Lua (programming language)
* Latvia University of Agriculture
* Last universal ancestor, in evolution
Ethnicity and language
* Lua people, of Laos
* Lawa people, of Thailand sometimes referred t ...
,
Perl
Perl is a family of two High-level programming language, high-level, General-purpose programming language, general-purpose, Interpreter (computing), interpreted, dynamic programming languages. "Perl" refers to Perl 5, but from 2000 to 2019 it ...
, and most shells.
By language
C and C++
The C language does not have a
global
keyword. However, variables declared outside a function have "file scope," meaning they are visible within the file. Variables declared with file scope are visible between their declaration and the end of the compilation unit (
.c
file) (unless shadowed by a like-named object in a nearer scope, such as a local variable); and they implicitly have external linkage and are thus visible to not only the
.c
file or
compilation unit containing their declarations but also to every other compilation unit that is linked to form the complete program. External linkage, however, is not sufficient for such a variable's use in other files: for a compilation unit to correctly access such a global variable, it will need to know its type. This is accomplished by declaring the variable in each file using the
extern
keyword. (It will be ''declared'' in each file but may be ''defined'' in only one.) Such
extern
declarations are often placed in a shared header file, since it is common practice for all .c files in a project to include at least one
.h
file: the standard header file
errno.h
is an example, making the
errno
variable accessible to all modules in a project. Where this global access mechanism is judged problematic, it can be disabled using the
static
keyword which restricts a variable to file scope, and will cause attempts to import it with
extern
to raise a compilation (or linking) error.
An example of a "global" variable in
C:
#include
// This is the file-scope variable (with internal linkage), visible only in
// this compilation unit.
static int shared = 3;
// This one has external linkage (not limited to this compilation unit).
extern int over_shared;
// Also internal linkage.
int over_shared_too = 2;
static void ChangeShared()
static void LocalShadow()
static void ParamShadow(int shared)
int main()
As the variable is an external one, there is no need to pass it as a parameter to use it in a function besides main. It belongs to every function in the module.
The output will be:
3
5
5
5
Java
Some languages, like Java, don't have global variables. In Java, all variables that are not local variables are fields of a class. Hence all variables are in the scope of either a class or a method. In Java, static fields (also known as
class variable
In class-based, object-oriented programming, a class variable is a variable defined in a class of which a single copy exists, regardless of how many instances of the class exist.
A class variable is not an instance variable. It is a special ...
s) exist independently of any instances of the class and one copy is shared among all instances; hence public static fields are used for many of the same purposes as global variables in other languages because of their similar "sharing" behavior:
public class Global
PHP
PHP has a
global
keyword and a number of unusual ways of using global variables.
Variables declared outside functions have file scope (which is for most purposes the widest scope). However, they are not accessible inside functions unless imported with the
global
keyword (i.e., the keyword ''accesses'' global variables, it does not ''declare'' them).
However, some predefined variables, known as ''superglobals'' are always accessible.
They are all arrays. A general purpose one is the
$GLOBALS
superglobal, which contains all the variables
defined out of function scope. Changes to its elements change the original variables, and additions create new variables.
The superglobals
$_POST
and
$_GET
are widely used in web programming.
Other languages
* In
Python and
MATLAB a global variable can be declared anywhere with the
global
keyword.
*
Ruby
A ruby is a pinkish red to blood-red colored gemstone, a variety of the mineral corundum (aluminium oxide). Ruby is one of the most popular traditional jewelry gems and is very durable. Other varieties of gem-quality corundum are called sapp ...
's global variables are distinguished by a '
$
'
sigil. A number of predefined globals exist, for instance
$$
is the current
process ID.
See also
*
Local variable
*
Non-local variable
In programming language theory, a non-local variable is a variable that is not defined in the local scope. While the term can refer to global variables, it is primarily used in the context of nested and anonymous functions where some variables can ...
*
Singleton pattern
*
Variables
**
Static variable
**
External variable
References
{{reflist
Variable (computer science)
de:Variable (Programmierung)#Variablen in einer Blockstruktur