設(shè)在工程中定義了下列類型:Type Stutypeino As Integerstrname As String*20strsex As String*1s
設(shè)在工程中定義了下列類型:
Type Stutype
ino As Integer
strname As String*20
strsex As String*1
smark As Single
End Type
在窗體上正確使用這個(gè)類型的是下列哪個(gè)操作( )。
A.Sub Command1_Click() Dim student As Stutype With student .ino=12 .Strname=smith .strsex=男 .smark=89 End With End Sub
B.Sub Command1_Click() Dim Student As Stutype With student .ino=12 .strname="smith" .strsex="男" .smark=89 End With End Sub
C.Sub Comnland1_Click() Dim student As Stutype With Stutype .ino=12 .strname="smith" .strsex="男" .smark=89 End With End Sub
D.Sub Command1_Click() Dim student As Stutype With student .ino=12 .Strname="smith" .strsex="男" .smark=89 End student End Sub
正確答案:B解析:本題考查為記錄類型變量student賦值。使用With語句可以對某個(gè)對象執(zhí)行一系列的語句,而不用重復(fù)指出對象的名稱。其語法如下:With記錄類型變量.記錄類型變量成員名=要賦的值…End With給記錄類型變量中的字符串型成員賦值時(shí)要加雙引號。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。