S
savenight
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.Button1Click(Sender: TObject);
var
a:array of double;
begin
SetLength(a,3);
a[0]:=2.3;
a[12]:=38;
showmessage(floattostr(high(a)))
//*
showmessage(floattostr(a[12]));
end;
把带星号的这行注释掉,程序运行显示38,
但不注释,程序运行显示2.29342341234E-307。
请解释?
var
a:array of double;
begin
SetLength(a,3);
a[0]:=2.3;
a[12]:=38;
showmessage(floattostr(high(a)))
//*
showmessage(floattostr(a[12]));
end;
把带星号的这行注释掉,程序运行显示38,
但不注释,程序运行显示2.29342341234E-307。
请解释?