如何使用setLength定义多维动态数组(急!在线等待)(50分)

  • 主题发起人 主题发起人 iceiceberg
  • 开始时间 开始时间
I

iceiceberg

Unregistered / Unconfirmed
GUEST, unregistred user!
声明了一个二维动态数组:a:array of boolean;
在程序中如何使用setLength来为其初始化个数呢?
(比如说行为R,列为C。)
运行通过马上给分!!!
 
a:array of array of boolean;
SetLength(a, 2,3);
 
var
I : Integer;
a : array of Boolean;
begin
SetLength(a, 10);
for I := 0 to 9 do
a := True;
end;
 
var
a : array of array of Boolean;
begin
SetLength(a, 2,3)

end

 
谢谢稻草,给分了。
to zhihuali:不好意思,我说的是多维的数组。
 
后退
顶部