發生一直阻塞時,會報以下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