> 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.
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to