比如
```gofunc
var c = make(chan int, 1)
func test() {
for {
tmp: <-c
fmt.Println("如果c是非阻塞,我会一直被循环打印")
}
}
func main() {
c<- 6 //这一步是往管道里写,是非阻塞的,因为设了缓冲
test() //那么从管道里读呢,能直接非阻塞吗,我意思是说即使把缓冲读完了,依旧要非阻塞
}
```
更多评论
<a href="/user/mortemnh" title="@mortemnh">@mortemnh</a> 这种方式可行,不知道是不是楼主要的
#3