Currently, the version of Go is 1.22
Go 数据类型
基础类型
Go语言中,基础类型有如下这些
<!-- 布尔 -->
bool
<!-- 字符-->
string
<!-- 有符号整数-->
int int8 int16 int32 int64
<!-- 无符号整数-->
uint uint8 uint16 uint32 uint64 uintptr
<!-- 字节-->
byte // alias for uint8
<!-- -->
rune // alias for int32
// represents a Unicode code point
<!-- 浮点型-->
float32 float64
<!-- -->
complex64 complex128