Pointer

From Free Pascal wiki
Revision as of 17:11, 12 July 2016 by FPC user (talk | contribs) (Spelling , can point to values)
Jump to navigationJump to search

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

A pointer is a data type which contains a reference/pointer to the memory address of the value or variable it points to.

Pointers can be declared in several ways:

p:  Pointer;  // direct use of pointer-type
pL: ^Longint; // usage of pointer-to-type notation.

See also:


navigation bar: data types
simple data types

boolean byte cardinal char currency double dword extended int8 int16 int32 int64 integer longint real shortint single smallint pointer qword word

complex data types

array class object record set string shortstring