Qore Programming Language Reference Manual  0.8.11.1
Variables

Unless parse option %allow-bare-refs or %new-style are set, variables are Qore identifiers prefixed by a "$" sign, similar to Perl. If a variable is declared without any type restriction, then it is assumed to have type any. In this case, variables so declared can hold any data type.

Special Variables

A few variables are set by the Qore language during the execution of Qore programs. These are normal variables that can be reassigned to other values by the user if necessary.

Special Qore Variables

Variable Scope Data Type Explanation
$argv Local List automatically assigned local variable containing the list of function or method arguments that were not assigned to parameter variables (see Implicit Argument References for more information)
Qore::$ARGV Global List script command-line arguments (use the Qore::GetOpt class to parse command-line arguments)
Qore::$QORE_ARGV Global List complete qore command-line arguments
Qore::$ENV Global Hash UNIX program environment
Note
  • As of version 0.5.0, $STDERR and $STDOUT have been removed from Qore. Use the I/O constants Qore::stderr, Qore::stdout, and Qore::stdin constants of the Qore::File class instead.
  • As of version 0.8.4, global variables are namespace members; if a namespace path is not declared for the global variable, then the global variable will reside in the root namespace

Variable Declarations and Lexical Scope

Unless the %assume-local parse directive is used, variables not in a parameter list automatically have global scope unless the first reference is prefixed with The "my" Keyword. Variable names in a parameter list are always local to their associated function, method, or catch block. Global variables can be explicitly declared with The "our" Keyword. The The "our" Keyword keyword is required if the parse option %require-our (-O or –require-our command-line option) is set for the parent program. See Parse Option Constants for more information.

When the %assume-local parse directive is used, variables without an explicit scope declaration (i.e. The "my" Keyword or The "our" Keyword) are assumed to be local variables.

Variables may be assigned any value unless restricted with a type declaration. If no type declaration is given, then the variable is assumed to be type any. Note that type declarations are required for all variables (and for function and method parameters and class members) when the %require-types parse option is set.

Local variables are not shared between threads (local variables have a distinct value in each thread, with some very particular exceptions), however global variables are. See Threading (and in particular Threading and Variables) for more information.

Global variables are members of namespaces; if a global variable is declared anywhere outside a namespace declaration, and a namespace path is not given, then the global variable will be assumed to be in the root namespace.

For example (in the following script, the The "our" Keyword keyword is optional unless %require-our is set):

#!/usr/bin/qore
#
# variable scoping example
our int $a = 1; # this is a global variable
our (string $b, any $c, hash $d); # list of global variables
if ($a == 1) {
my int $a = 2;
my (string $b, any $c);
# $a, $b, and $c are local variables,
# the use of which will not affect the
# global variables of the same name
print("local a = %d\n", $a);
}
print("global a = %d\n", $a);

The first print() statement will output:

local a = 2

The second print() statement will output:

global a = 1
Note
If parse option %allow-bare-refs is set, then variable references must be made without the "$" character.

Local Variables

Local variables are local to the block in which they are declared; they are also thread-local, meaning that each thread will have its own value of a local variable.

Local variables are generally accessed without any mutual-exclusion locking (with the exception of local variables bound in closures and local variables that have a reference taken of them).

Note
Declaring a variable with my at the top-level of a program creates a local variable with global scope; in effect this is a global thread-local variable; see Threading and Variables for more information.

The "my" Keyword

Variables declared with my are always local variables.

my Example

my int $i = 1;

The my keyword is not required if the %assume-local parse directive is set (note that this parse directive is also set by %new-style). In this case, all variables are assumed to be local unless explicitly declared with our.

Global Variables

The "our" Keyword

Variables declared with our have global scope and are subject to mutual exclusion locks with each access. Therefore even in single-threaded programs, it's more efficient to use local variables (even local variables with global scope - where a local variable is declared in the top-level block) if the value of the variable does not need to be shared among other threads.

our Example

our int $i = 1;

Note that the our keyword is required when declaring a global variable if the parse option %require-our (-O or –require-our command-line option) is set for the parent program. See Parse Option Constants for more information.

Unlike local variables, global variables are members of namespaces; if a namespace path is not given, then the global variable will be assumed to be in the root namespace. Global variables declared in namespaces cannot be initialized at the same time as the declaration, but instead have to be initialized elsewhere.

When defining a user module, the our keyword can be preceded by public, which means that the global variable will be available (imported) in the Program object importing the module. See public for more information.