Array Data Types in Delphi

Array := Series of Values

woman looking at laptop next to windows in office.

Stickney Design / Moment Open / Getty Images

Arrays allow us to refer to a series of variables by the same name and to use a number (an index) to call out individual elements in that series. Arrays have both upper and lower bounds and the elements of the array are contiguous within those bounds.

Elements of the array are values that are all of the same type (string, integer, record, custom object).

In Delphi, there are two types of arrays: a fixed-size array which always remains the same size--a static array--and a dynamic array whose size can change at runtime.

Static Arrays

Suppose we are writing a program that lets a user enter some values (e.g. the number of appointments) at the beginning of each day. We would choose to store the information in a list. We could call this list Appointments, and each number might be stored as Appointments[1], Appointments[2], and so on.

To use the list, we must first declare it. For example:

var Appointments : array[0..6] of Integer; 

declares a variable called Appointments that holds a one-dimensional array (vector) of 7 integer values. Given this declaration, Appointments[3] denotes the fourth integer value in Appointments. The number in the brackets is called the index.

If we create a static array but don’t assign values to all its elements, the unused elements contain random data; they are like uninitialized variables. The following code can be used to set all elements in the Appointments array to 0.

for k := 0 to 6 do Appointments[k] := 0; 

Sometimes we need to keep track of related information in an array. For example, to keep track of each pixel on your computer screen, you need to refer to its X and Y coordinates using a multidimensional array to store the values.

With Delphi, we can declare arrays of multiple dimensions. For example, the following statement declares a two-dimensional 7 by 24 array:

var DayHour : array[1..7, 1..24] of Real; 

To compute the number of elements in a multidimensional array, multiply the number of elements in each index. The DayHour variable, declared above, sets aside 168 (7*24) elements, in 7 rows and 24 columns. To retrieve the value from the cell in the third row and seventh column we would use: DayHour[3,7] or DayHour[3][7]. The following code can be used to set all elements in the DayHour array to 0.

for i := 1 to 7 do

for j := 1 to 24 do

DayHour[i,j] := 0;

Dynamic Arrays

You may not know exactly how large to make an array. You may want to have the capability of changing the size of the array at runtime. A dynamic array declares its type, but not its size. The actual size of a dynamic array can be changed at runtime by the use of the SetLength procedure.

var Students : array of string; 

creates a one-dimensional dynamic array of strings. The declaration does not allocate memory for Students. To create the array in memory, we call SetLength procedure. For example, given the declaration above,

SetLength(Students, 14) ; 

allocates an array of 14 strings, indexed 0 to 13. Dynamic arrays are always integer-indexed, always starting from 0 to one less than their size in elements.

To create a two-dimensional dynamic array, use the following code:

var Matrix: array of array of Double;
begin

SetLength(Matrix, 10, 20)

end;

which allocates space for a two-dimensional, 10-by-20 array of Double floating-point values.

To remove a dynamic array's memory space, assign nil to the array variable, like:

Matrix := nil; 

Very often, your program doesn't know at compile time how many elements will be needed; that number will not be known until runtime. With dynamic arrays, you can allocate only as much storage as is required at a given time. In other words, the size of dynamic arrays can be changed at runtime, which is one of the key advantages of dynamic arrays.

The next example creates an array of integer values and then calls the Copy function to resize the array.

var

Vector: array of Integer;


k : integer;

begin

SetLength(Vector, 10) ;

for k := Low(Vector) to High(Vector) do

Vector[k] := i*10;

...

//now we need more space

SetLength(Vector, 20) ;

//here, Vector array can hold up to 20 elements //(it already has 10 of them)end;

The SetLength function creates a larger (or smaller) array and copies the existing values to the new array. The Low and High functions ensure you access every array element without looking back in your code for the correct lower and upper index values.

Format
mla apa chicago
Your Citation
Gajic, Zarko. "Array Data Types in Delphi." ThoughtCo, Apr. 5, 2023, thoughtco.com/using-array-data-types-in-delphi-1057644. Gajic, Zarko. (2023, April 5). Array Data Types in Delphi. Retrieved from https://www.thoughtco.com/using-array-data-types-in-delphi-1057644 Gajic, Zarko. "Array Data Types in Delphi." ThoughtCo. https://www.thoughtco.com/using-array-data-types-in-delphi-1057644 (accessed March 19, 2024).