VB6.0的数组的上界上限是多少?是整型的范围么?
VB6.0的数组的上界上限是多少?是整型的范围么?
2018-09-18 18:19
[此贴子已经被作者于2018-9-18 18:59编辑过]

2018-09-18 18:31
程序代码:Dim Commpents_Name_Style() As String Private Sub Form_Load() ReDim Commpents_Name_Style(1 To 30000,1 To 30000,1 To 30000) As String End Sub
2018-09-18 21:43

2018-09-19 09:40

2018-09-19 13:16
2018-09-19 14:07
2018-09-19 14:07

程序代码:
Private Type C
Third() As String
End Type
Private Type B
Second() As C
End Type
Private Type A
First() As B
End Type
Private AA As A

2018-09-19 17:03
程序代码:
Private Type C
Third(32723) As Integer
End Type
Private Type B
Second As C
End Type
Private Type A
First As B
End Type
Private AA As A
程序代码:
Private Type C
Third() As Integer
End Type
Private Type B
Second() As C
End Type
Private Type A
First() As B
End Type
Private AA As A
[此贴子已经被作者于2018-9-19 17:13编辑过]

2018-09-19 17:08
2018-09-19 18:17