Go的基本类型
bool //默认值为false string //默认值为空字符串 int int8 int16 int32 int64 //默认值为0 uint uint8 uint16 uint32 uint64 uintptr //默认值为0 byte // uint8 的别名 rune // int32 的别名 float32 float64 //默认值为0 complex64 complex128 //默认值为0原文链接:https://www.f2er.com/go/188561.html