Private Sub Form_click()
Dim a As String * 4
a = "computer"
a$ = "internet"
Print a, a$
End Sub结果是
inte        inte
为什么是这个结果?