发布于 2007-09-21 11:31:16
0楼
Example: "ARRAY [1..2,1..3] OF INT" defines an array in the format 2 x 3 of integers.
You access the data via the index ("[m,n]"), where 1<=m<= 2 and 1<=n<=3 must be observed.
You can declare up to 6 dimensions. The index can be any integer value. In the declaration the ARRAY limits must be set so that the ARRAY can include a maximum total of 65535 elements. The value for the upper limit of the dimension must be higher than the value for the lower limit.