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