Variable

From Lazarus wiki
Revision as of 03:10, 1 December 2018 by Kai Burghardt (talk | contribs) (rewrite(input))
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 manipulated during run-time.

declaration

Variables are declared in a var section. In Pascal every variable has a data type already known at compile-time. A variable is declared by a (identifier, data type identifier) 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, once the 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

A variable can be defined, that means declared and initialized, in one term by doing the following.

var
	x: integer = 42;

Note, this syntax is not original Pascal. In Pascal declarations and assignments are kept apart by design. This syntax kind of breaks that principle.

memory alias

In conjunction with keyword absolute an identifier can be associated with a previously reserved blob of memory. While a plain (identifier, data type) 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