注册 登录
编程论坛 Delphi论坛

[求助] 这个数组有什么问题?

p9998887778 发布于 2007-07-26 16:53, 612 次点击

代码是

procedure TForm1.Button1Click(Sender: TObject);
var
a:array of integer;
icount:integer;


begin
setlength(a,5);
for icount:=0 to 4 do
a[icount]:=icount+5;
edit1.Text:=inttostr(a[1]);
setlength(a,7);
edit2.Text:=inttostr(a[icount]);
setlength(a,3);
edit3.Text:=inttostr(a[3]);
end;

end.



结果得出edit1为6
edit2===0
可是怎么edit3就成天文数字了呢?(13968932)


为什么edit3会是天文数字啊?

求解
谢谢

1 回复
#2
冰凝19842007-07-31 15:07
setlength(a,3);
表明数组a的长度为3,那么它只能有3个值:a[0],a[1],a[2],而根本不存在a[3]
1