Zitat von
fauxx:
Delphi-Quellcode:
var a: array [1..2, 1..2] of Integer;
begin
a[1,1] := 3;
showmessage(inttostr(a[1,1])); //gibt 3 aus...
showmessage(inttostr(a[2,1])); //gibt bei mir (wieso auch immer) 201654148 aus
end;
Da steht "Blödsinn" drin, weil a eine lokale Variable ist und diese nicht initialisiert werden. Folglich steht da irgendwas drin, was an dieser Stelle im Speicher zufällig für ein Wert steht / stand.