Variable

From Free Pascal wiki
Jump to navigationJump to search

English (en) suomi (fi) français (fr) русский (ru)

A variable is an identifier associated with a chunk of memory that can be inspected and manipulated during run-time in accordance with an associated data type.

declaration

Variables are declared in a var section. In Pascal every variable has a data type already known at compile-time (and let it be the data type variant). A variable is declared by a [math]\displaystyle{ (\text{identifier}, \text{data type identifier}) }[/math] tuple, separated by a colon:

var
	foo: char;

According to the data type’s space requirements, the appropriate amount of memory is reserved on the stack, as soon as the corresponding scope is entered. Depending on where the var-section is placed, you can speak of either global or local variables.

manipulation

Variables are manipulated by the assignment operator :=. Furthermore a series of built-in procedures implicitly assign values to a variable:

definition

In Extended Pascal a variable can be defined, that means declared and initialized, in one term by doing the following.

var
	x: integer value 42;

The FPC as of version 3.2.0 does only support Borland Delphi’s = notation:

var
	x: integer = 42;

The VAX Pascal notation using := is not supported at all.

access

A variable is accessed, that means the value at the referenced memory position is read, by simply specifying its identifier (wherever an expression is expected).

Note, there are a couple data types which are in fact pointers, but are automatically de-referenced, including but not limited to classes, dynamic arrays and ANSI strings. With {$modeSwitch autoDeref+} (not recommended) also typed pointers are silently de-referenced without the ^ (hat symbol) being present. This means, you do not necessarily operate on the actual memory block the variable is genuinely associated with, but somewhere else.

Usually the variable’s memory chunk is interpreted according to its data type as it was declared as. With typecasts the interpretation of a given variable’s memory block can be altered (per expression).

memory alias

In conjunction with the keyword absolute an identifier can be associated with a previously reserved blob of memory. While a plain [math]\displaystyle{ (\text{identifier}, \text{data type}) }[/math] tuple actually sets a certain amount of memory aside, the following declaration of c does not occupy any additional space, but links the identifier c with the memory block that has been reserved for x:

var
	x: byte;
	c: char absolute x;

Here, the memory alias was used as a, one of many, strategies to convince the compiler to allow operations valid for the char type while the underlying memory was originally reserved for a byte. This feature has to be chosen wisely. It necessarily requires knowledge of data type’s memory structure, if nothing is supposed to trigger any sort of access violations.

Most importantly, the additionally referenced memory will be treated as if it was declared regularly. No questions asked.

see also