make函数是Go的内置函数 为 slice map chan 初始化并返回引用 make 只用于创建 slice map 和 channel,并返回它们的实例 创建slice make([]Type, len, cap) cap省略时,默认等于len slice1 := make([]int, 9) len(slice1) cap(slice1) 创建map make(map[keyType] valueType, size) map1 := make(map[string]int) 创建channel make(chan Type, size) size 缓冲槽大小 默认 0 ,不为0时,通道是一个异步通道 channel1 := make(chan int, 7)
go channel 实例