Memory Operators

FreeBASIC

Memory Operators
 
Operators that work with memory

The memory operators provide a way to dynamically allocate and deallocate variables and objects.

Operator New
Allocates memory for and constructs objects.
Operator Placement New
Constructs objects at a specified memory location.
Operator Delete
Destroys and deallocates memory for objects.