Go语言实践技巧(11)——unbuffered channel 下列两种方式创建的都是unbuffered channel: ch = make(chan int) ch = make(chan int, 0)