delphi动态数组问题?
我写的程序为:varI:integer;beginI:=ComboBox1.Items.Count-1;SetLength(str,I);I:=0;forI:=0toCo...
我写的程序为:
var
I:integer;
begin
I:=ComboBox1.Items.Count-1;
SetLength(str,I);
I:=0;
for I:=0 to ComboBox1.Items.Count-1 do
begin
str[i]:=ComboBox1.Items[I];
end;
为什么运行之后出错 展开
var
I:integer;
begin
I:=ComboBox1.Items.Count-1;
SetLength(str,I);
I:=0;
for I:=0 to ComboBox1.Items.Count-1 do
begin
str[i]:=ComboBox1.Items[I];
end;
为什么运行之后出错 展开
2个回答
展开全部
var
I:integer;
str:array of String;
begin
I:=ComboBox1.Items.Count;
showmessage(IntToStr(i));
SetLength(str,I);
I:=0;
for I:=0 to ComboBox1.Items.Count-1 do
begin
str[i]:=ComboBox1.Items[I];
showmessage(str[i]);
end;
end;
错误1:str未声明
2:动态空间长度有问题I:=ComboBox1.Items.Count;
I:integer;
str:array of String;
begin
I:=ComboBox1.Items.Count;
showmessage(IntToStr(i));
SetLength(str,I);
I:=0;
for I:=0 to ComboBox1.Items.Count-1 do
begin
str[i]:=ComboBox1.Items[I];
showmessage(str[i]);
end;
end;
错误1:str未声明
2:动态空间长度有问题I:=ComboBox1.Items.Count;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询