UBound
时间: 2023-11-14 14:07:03 浏览: 108
u-boot
UBound 是 Visual Basic for Applications (VBA) 中的一个函数,用于返回数组的上限(或者维度的大小)。在使用 UBound 函数时,需要指定数组和维度的索引值。示例代码如下:
```
Dim arr(1 To 5) As Integer
Debug.Print UBound(arr) '输出为5,因为数组arr的上限是5
```
需要注意的是,VBA 中的数组索引从 1 开始,而不是从 0 开始。
阅读全文