Registriert seit: 1. Feb 2018
3.691 Beiträge
Delphi 11 Alexandria
|
AW: Dynamische Array
23. Mär 2023, 10:27
Code:
program Project1;
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils;
type
T3dArr = array of array of array of double;
var
arr: T3dArr;
begin
try
SetLength(arr, 1, 4, 3);
SetLength(arr, 1, 4, 3);
SetLength(arr, 1, 40, 3);
SetLength(arr, 1, 40, 3);
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
ReadLn;
end.
Läuft ohne Probleme durch.
|
|
Zitat
|