设在一个工程的窗体中有如下代码: Public x As Integer Private Sub Foma_Load() Dim y As Integer End Sub 在该工程的标准模块的声明部分有代码: Public a As Integer:Pri

admin2019-06-11  26

问题 设在一个工程的窗体中有如下代码:
Public x As Integer
Private Sub Foma_Load()
Dim y As Integer
End Sub
在该工程的标准模块的声明部分有代码:
Public a As Integer:Private b As Integer
关于上述代码,以下叙述中错误的是

选项 A、变量x的作用域是整个工程
B、变量y的作用域是Form_Load过程
C、变量a的作用域是整个工程
D、变量b的作用域是整个标准模块

答案A

解析 根据变量的定义位置和定义关键字的不同,变量可以分为局部(Local)变量、模块(Module)变量和全局(Public)变量3种类型。
转载请注明原文地址:https://kaotiyun.com/show/fDUp777K
0

随机试题
最新回复(0)