vbs的function能返回数组吗?
例如,定义了一个functionfunction getValus()
dim i,a()
Redim preserve a(i)
for i=0 to n then
a(i)=i
next
end function
请问如何将数组a的所有值返回? function的返回值当然可以是数组。如下:
Dim i,n,a
n=5
a=GetValues(i,n)
For i=0 to n
print a(i)
Next
Function GetValues(i,n)
Redim a(n)
For i=0 to n
a(i)=i
next
GetValues=a
End Function 可以
页:
[1]