VB 在自定义函数中,可以通过 返回值

2024-11-22 23:15:27
推荐回答(3个)
回答1:

VB 中 在自定义函数中,可以通过(函数名)返回值
VB自定义函数程序说明

是一系列的语句,被封装在 Function 和 End Function 语句内
可执行某些操作,并会返回值
可带有通过程序调用来向其传递的参数。
如果没有参数,必须带有空的圆括号 ()
通过向函数程序名赋值的方式,可使其返回值

Function myfunction()
some statements
myfunction=some value
End Function

或者

Function myfunction(argument1,argument2)
some statements
myfunction=some value
End Function

回答2:

上楼的回答是说明了在VB中过程和函数的区别,但跑题了,题目问的是“在自定义函数中”那就说明和Sub没有关系。
接下来问的是“可以通过___返回值”
在VB中是通过给函数名赋值来返回值的,所以应该选C
比如
Function A2(ByVal a1 As Integer,ByVal a2 As Integer) As Integer
A2 = a1 + a2
End Function

调用时用 = A2(1,2)

回答3:

答案选:A
sub是过程,没有返回值。
Function是函数,有返回值。