vb6 – VB中可变数量的参数

前端之家收集整理的这篇文章主要介绍了vb6 – VB中可变数量的参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在视觉基础中创建可变数量的参数的函数
恩。
x =  Sum(1,2,3)
y =  Sum(1,2)

Function Sum('how to declare argument here')
'Is there any special argument manipulation inside function before it is usable?
End Function
看看 Passing a Variable Number of Arguments
Function Sum(ParamArray Vals() As Variant)
    Dim intLoopIndex As Integer
    For intLoopIndex = 0 To  UBound(Vals)

    Next intLoopIndex

End Function
原文链接:https://www.f2er.com/vb/256044.html

猜你在找的VB相关文章