[fpc-pascal] Arrays of objects
Marco van de Voort
marcov at stack.nl
Wed Oct 31 12:19:21 CET 2007
> Adrian Maier wrote:
> VArray: array of TSomeClass;
> begin
> SetLength(VArray, 10);
> // now you have VArray[0] .. VArray[9];
> SetLength(VArray, 20);
> // now you have [0] .. [19];
> // Length(VArray) = 20
> // for I := 0 to Pred(Length(VArray)) is a valid statement
>
> They are reference counted, just like ansi strings, ie don't worry about
> memory leakages.
... Of the array itself. The objects it contains is another matter.
More information about the fpc-pascal
mailing list