dim b (0 to 2, 0 to 3) as long 有12个元素 0,1,2=3个 0,1,2,3=4个 34=12个
dim a (1 to 100) as string 有100个元素 1-100 =100个
dim a (2,-2 to 14) as integer 0,1,2=3个 -2,-1,0,1=4个 34=12个
dim(3,4)有20个元素。 0,1,2,3=4个 0,1,2,3,4=5个 45=20个
UBound 函数
返回一个 Long 型数据,其值为指定的数组维可用的最大下标。
语法
UBound(arrayname[, dimension])
UBound 函数的语法包含下面部分:
。。。
dim a(30)
for i=1 to 30
a(i)=i
next i
private sub command1_click()
static count as integer
if count <=30 then
count=1
text1text=a(count)
a(count)=0
count=count+1
else
msgbox"数组的数已经清空"
end sub
以上就是关于VB中如何判断一个数组有多少个元素全部的内容,包括:VB中如何判断一个数组有多少个元素、vb中测试数组中数据个数的函数是什么、VB从数组中选出一个数等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)