Go 只读通道/只写通道/有缓冲通道/无缓冲通道【深度解析】

carefor ·
//定义只写通道 ch_w := <-chan interface{} 这写的有问题吧 应该是这样的 ch_w := chan<- interface{}
#1