摘要: 基本类型 字符串类型 string 布尔类型 bool 数值类型 int8, int16, int32, int64, uint8, uint16, uint32, uint64, int, uint, uintptr type, rune 其中type为uint8的内置别名,rune为int32的 阅读全文
posted @ 2022-09-22 18:29 dxx99 阅读(11) 评论(0) 推荐(0)
摘要: 类型定义 语法格式 // 单个定义 type NewTypeName SourceType // 多个定义 type ( NewTypeName1 sourceType1 NewTypeName2 sourceType2 ) 注意事项 一个新定义的类型与它的源类型为两个不同的类型 // 自定义类型 阅读全文
posted @ 2022-09-22 18:10 dxx99 阅读(36) 评论(0) 推荐(0)