当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript UBound 函数

VBScript
VBScript 介绍
如何使用 VBScript
VBScript 放置
VBScript 变量
VBScript 程序
VBScript 条件语句
VBScript 循环声明
VBScript 摘要
VBScript 实例
VBScript 函数
VBScript 关键字

VBScript UBound 函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 176 ::
收藏到网摘: n/a

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。

实例 1

dim a(10)
a(0)="Saturday"
a(1)="Sunday"
a(2)="Monday"
a(3)="Tuesday"
a(4)="Wednesday"

a(5)="Thursday"
document.write(UBound(a))
document.write("<br />")
document.write(LBound(a))
输出:
10
0

评论 (0) All

登陆 | 还没注册?