Skip to content

Commit

Permalink
修正14.3中关于检测通道阻塞的错误 (#808)
Browse files Browse the repository at this point in the history
  • Loading branch information
crazy-fz authored Oct 23, 2021
1 parent 684ee99 commit e719589
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion eBook/14.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if v, ok := <-ch; ok {
}
```

或者在 for 循环中接收的时候,当关闭或者阻塞的时候使用 break:
或者在 for 循环中接收的时候,当关闭的时候使用 break:

```go
v, ok := <-ch
Expand All @@ -37,6 +37,21 @@ if !ok {
process(v)
```

而检测通道当前是否阻塞,需要使用 select(参见第 [14.4](14.4.md) 节)。

```go
select {
case v, ok := <-ch:
if ok {
process(v)
} else {
fmt.Println("The channel is closed")
}
default:
fmt.Println("The channel is blocked")
}
```

在示例程序 14.2 中使用这些可以改进为版本 goroutine3.go,输出相同。

实现非阻塞通道的读取,需要使用 select(参见第 [14.4](14.4.md) 节)。
Expand Down

0 comments on commit e719589

Please sign in to comment.