php小编西瓜在这里为大家解答一个关于golang通道的问题:关闭golang通道是否也会强制goroutine同步?通常情况下,关闭通道不会强制goroutine同步,但关闭通道会触发对通道的读操作返回零值和一个布尔值。如果通道中还有未读取的数据,那么读取操作会返回数据和true;如果通道中没有未读取的数据,那么读取操作会返回零值和false。因此,在关闭通道后,可以通过读取通道来判断是否已经读取完通道中的所有数据。
问题内容
如《Go 编程语言》一书(第 226 页)所述:
Communication over an unbuffered channel causes the sending and receiving goroutines to synchronize. Because of this, unbuffered channels are sometimes called synchronous channels. When a value is sent on an unbuffered channel, the receipt of the value happens before the reawakening of the sending goroutine.
登录后复制
关闭通道也会发生同样的情况吗?我的意思是,关闭通道的接收总是发生在刚刚关闭它的 goroutine 重新唤醒之前吗?
我记得读过一些与之相关的内容。我在书上搜索过,但没有找到。
解决方法
关闭通道不会像在无缓冲通道上发送那样强制 goroutine 同步。
Go 内存模型规范说:
调用 close()
的 goroutine 不会阻塞等待另一个 goroutine 接收零值。
向无缓冲通道发送值的 Goroutine 会阻塞,直到另一个 Goroutine 接收到该值。
以上就是关闭 golang 通道是否也会强制 goroutine 同步?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!