关于VB数组的一些知识,能不能帮忙介绍一下

来源:百度知道 编辑:UC知道 时间:2024/05/29 13:14:21

例子:
dim a(9) as integer '定义一个integer类型的数组,下标从0-9
dim b(1 to 10) as string '定义一个string类型的数组,下标从1-10
dim c() as Long '定义一个Long的动态数组
redim c(1 to 100) as Long '再定义Long的动态数组,下标从1-100

dim a(9,9) as integer '二维数组

等等
你可用查阅教材