Function test ()
a = 5
test = a
End Function
Sub test()
str = test()
Debug.Print str ' str的值就是5
End Sub
Function test ()
a = 5
test = a
End Function
Sub test()
str = test()
Debug.Print str ' str的值就是5
End Sub
本文标题:Sub过程中调用Function过程
本文链接:https://www.haomeiwen.com/subject/xcnfdctx.html
网友评论