发生一直阻塞时,会报以下deadlock错误:缓存
fatal error: all goroutines are asleep - deadlock!
1.向已经关闭的channel写。
2.关闭已经关闭的channel。code
You needn't close every channel when you've finished with it.It's only necessary to close a channel when it is important to tell the receiving goroutines that all data have been sent.协程
Note that it is only necessary to close a channel if the receiver is looking for a close. Closing the channel is a control signal on the channel indicating that no more data follows.it
It's OK to leave a Go channel open forever and never close it. When the channel is no longer used, it will be garbage collected.import