Registriert seit: 26. Mai 2004
3.159 Beiträge
|
AW: Array of XY löschen
27. Aug 2012, 15:36
Delphi-Quellcode:
var
A : array of Byte;
begin
SetLength(A, 1000);
SetLength(A, 0);
Writeln(Assigned(A)); // Liefert: FALSE
SetLength(A, 1000);
A := nil;
Writeln(Assigned(A)); // Liefert: FALSE
end.
Ausgehend davon, würde ich sagen ja.
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
|