```go
package main
import "fmt"
func fibonacci(c, quit chan int) {
x, y := 0, 1
for {
select {
case c <- x:
x, y = y, x+y
case <-quit:
fmt.Println("quit")
return
}
}
}
func main() {
c := make(chan int)
quit := make(chan int)
go func() {
for i := 0; i < 10; i++ {
fmt.Println(<-c)
}
quit <- 0
}()
fibonacci(c, quit)
}
```
官网的例子,为什么先执行fibonacci函数后再执行go
因为select语句导致的,select 语句中的quit只是读取,所以需要其他协程先写入quit信道中, 如果你想调顺序的话,在main()中 fibonacci语句前 加入defer也是可以的。 如果不想让程序报错的话,可以在select语句中加入 default项
#7
更多评论