怎样获取二维数组的最大下标?
如题,一个二维数组 想知道怎样获取这个数组的元素个数[ 本帖最后由 duxuetao1201 于 2008-10-30 15:44 编辑 ] 没人会吗?
还是自己来吧 我也想知道啊! dim $a
MsgBox(0,0,"["&UBound($a,1)&"]["&UBound($a,2)&"]") autoit中的例子
Dim $myArray ;element 0,0 to 9,19
$rows = UBound($myArray)
$cols = UBound($myArray, 2)
$dims = UBound($myArray, 0)
MsgBox(0, "The " & $dims & "-dimensional array has", _
$rows & " rows, " & $cols & " columns")
;Display $myArray's contents
$output = ""
For $r = 0 to UBound($myArray,1) - 1
$output = $output & @LF
For $c = 0 to UBound($myArray,2) - 1
$output = $output & $myArray[$r][$c] & " "
Next
Next
MsgBox(4096,"Array Contents", $output) 4楼的解答不错,值得尝试下 4楼的正解 不错
页:
[1]