dim a() as integer ‘定义数组a的类型redim a(0) ’定义数组的个数 一般数组从0开始算 如果redim a(12) 这样数组a中就有13个内存了b=55 a(0)=5 这样就把数据55录入数组a()中了 其中a(0)=55