Home / def / staticarray 
static array
A static array is an array that is allocated directly inside an object.

A static array cannot be shared, and is destroyed with the object.
The size of a static array must be known at compilation time.

See also

dynamic array