文件名称:自定义类型-VB语法基础
文件大小:342KB
文件格式:PPT
更新时间:2024-05-15 03:19:01
VB 语法 基础
7、自定义类型 自定义类型由Type语句来实现: 格式:Type 自定义类型名 元素名1 As 类型名 元素名2 As 类型名 …… 元素名n As 类型名 End Type 例如: Type stutype xm As String*4 xh As Integer csrq As Date sx As Single yw As Single yy As Single endtype Dim x as student x.xm=“rose” x.xh=2