设有下面的类型和变量定义, Private Type Rec name As String score(5) As Integer End Type Dim student As Rec 则下面正确的语句是

admin2019-04-29  30

问题 设有下面的类型和变量定义,
Private Type Rec
    name As String
    score(5) As Integer
End Type
Dim student As Rec
则下面正确的语句是

选项 A、student = "张三"
B、student.score(2) = 75
C、student(3).score = 69
D、score(4) = 77

答案B

解析 Rec是用户自定义的数据类型,将student定义成Rec类型,它的成员有字符串类型的name和一个整型数组。对于student,不能直接对student赋值,只能对student的成员赋值,A项正确写法为Student.name="张三",故A项错误。student不是数组,故C项错误。在引用时成员,前面必须对象名称,D项应改为student.score(4)=77,故D项错误。
转载请注明原文地址:https://kaotiyun.com/show/Q2Up777K
0

最新回复(0)