go 数据类型

Go语言的基本类型有:
bool
string
int、int8、int16、int32、int64
uint、uint8、uint16、uint32、uint64、uintptr
byte // uint8 的别名
rune // int32 的别名 代表一个 Unicode 码
float32、float64
complex64、complex128

学习地址
https://github.com/jackhu1990/golangman
原文地址:https://www.cnblogs.com/kevin-yang123/p/14437199.html