当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript UBound 函数
The UBound function returns the largest subscript for the indicated dimension of an array.
UBound 函数可返回指定数组维数的最大可用下标
Tip: Use the UBound function with the LBound function to determine the size of an array.
提示:UBound 函数与 LBound 函数一起使用,用于确定数组的大小
UBound(arrayname[,dimension]) |
参数 | 描述 |
---|---|
arrayname | Required. The name of the array variable 必选项。数组变量名,遵循标准变量命名约定 |
dimension | Optional. Which dimension's upper bound to return. 1 = first dimension, 2 = second dimension, and so on. Default is 1 可选项。指定返回哪一维上界的整数。1 表示第一维,2 表示第二维,以此类推。如果省略 dimension 参数,则默认值为 1。 |
dim a(10) 输出: 10 |