1.布尔类型:bool 2.整型:int8,byte,int16,int,uint,uintptr等 3.浮点类型:float32.float64 4.复数类型:complex64,complex128 5.字符串:string 6.字符类型: rune 7.错误类型 error Go语言也支持复合类型: 指针,数组,切片,字典,通道chan,结构体struct,接口interface. 对于常规开发用int和uint就可以了,没必要用int8之类的明确指定长度,这样移植困难 1.Bool类型:…