我试图创建一个异步通道,我一直在看
http://golang.org/ref/spec#Making_slices_maps_and_channels。
c := make(chan int,10) // channel with a buffer size of 10
这是什么意思,缓冲区大小是10?缓冲区大小具体代表/限制?
缓冲区大小是可以发送到通道而没有发送阻塞的元素数。默认情况下,通道的缓冲区大小为0(使用make(chan int)可以得到这个值)。这意味着每个单个发送将阻塞,直到另一个goroutine从通道接收。缓冲区大小为1的通道可以容纳1个元素,直到发送块,所以你会得到
原文链接:https://www.f2er.com/go/188090.htmlc := make(chan int,1) c <- 1 // doesn't block c <- 2 // blocks until another goroutine receives from the channel