内置类型
# 1. 内置类型
# 1.1 值类型
基本数据类型
- 整型
- 浮点型
- 布尔型
- 字符串
复合数据类型
- 数组
- 切片
- 结构体
- 函数
- map
- 通道(channel)
- 接口
bool
int(32 or 64), int8, int16, int32, int64
uint(32 or 64), uint8(byte), uint16, uint32, uint64
float32, float64
string
complex64, complex128
array // 固定长度的数组
1
2
3
4
5
6
7
2
3
4
5
6
7
# 1.2 引用类型(指针类型)
slice // 序列数组(最常用)
map // 映射
channel // 管道
1
2
3
2
3
上次更新: 2022/06/12, 15:48:09