Nein, du kannst nicht mehr 2 dimensional darauf zugreifen (mit 2 Indices), aber du du kannst im Zweifelsfall so tun als ob:
Delphi-Quellcode:
// Daten aus arr1 auslesen, als wäre es 2D:
w := 3;
h := 3;
for y := 0 to h-1 do
begin
line := '';
for x := 0 to w-1 do
line := line + IntToStr(arr1[y*w + x]) + ',';
Memo1.Lines.Add(line);
end;
Ergibt: Siehe Anhang.
Michael
"Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."