问题
单项选择题
若在窗体模块的声明部分声明了如下自定义类型和数组: Private Type rec Code As Integer Caption As String End Type Dim arr(5)As rec 则下面的输出语句中正确的是______。
A.Print air.Code(2), aft.Caption(2)
B.Print arr.Code, air.Caption
C.Print arr(2).Code, air(2).Caption
D.Print Code(2), Caption(2)
答案
参考答案:C
解析: 定义一个自定义类型的数组,数组元素表示为:数组名(下标),成员名,故选C。