A、Sub Proc(x as Integer,Y as Integer)
B、Sub Proc(ByVal x as Integer,Y as Integer)
C、Sub Proc(x as Integer,ByVal Y as Integer)
D、Sub Proc(ByVal x as Integer,ByVal Y as Integer)
查看答案
正确答案
试题解析
本题考查VBA中参数传递的知识。在VBA的过程调用时,参数有两种传递方式:传址传递和传值传递。如果在过程声明时形参用ByVal声明,说明此参数为传值调用;若用ByRef声明,说明此参数为传址调用:若没有说明传递类型,则默认为传址传递,即形参的结果会传递给实参。