golang channel tips

Posted dearplain

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang channel tips相关的知识,希望对你有一定的参考价值。

 

1. 读nil的channel是永远阻塞的。关闭nil的channel会造成panic。


2. closed channel的行为:

向close的channel发消息会panic。因为go建议向channel发送数据的人负责close channel。

如果close的channel还有数据,仍然可以读取。

读取close的并且空的channel,会马上返回零值(注意chan int会返回0)。

A channel "close" is really just a send of a special value on a channel. 


3. 可以对channel使用range。这样不用写select,显得代码简洁。


4. ok=false表示channel空并且close了 (注意不是“或者”)。

 

参考:

https://stackoverflow.com/questions/34897843/why-does-go-panic-on-writing-to-a-closed-channel

 

以上是关于golang channel tips的主要内容,如果未能解决你的问题,请参考以下文章

golang的缓冲channel简单使用

golang - channel

golang的goroutine与channel

golang协程——通道channel阻塞

golang---channel

golang channel 超时如何处理