形式一: dim a(3) as integer
定义一个数组(有四个数),从a(0)-a(3)。
形式二: dim b(3 to 5)
定义数组的下界和上界,下界为3,上界为5。
形式三:dim c() as integer
不限定数组大小,在使用的时候,再重定义。
ReDim a(9)