我试图理解为什么使通道的缓冲区大小发生更大的变化会导致我的代码意外运行。如果缓冲区小于我的输入(100 个整数),则输出符合预期,即 7 个 goroutines 每个读取输入的子集并在另一个打印它的通道上发送输出。如果缓冲区大小与输入相同或大于输入,我将不会得到任何输出也不会出错。我是否在错误的时间关闭了频道?我对缓冲区的工作方式有错误的期望吗?或者是其他东西?
package main
import (
"fmt"
"sync"
)
var wg1, wg2 sync.WaitGroup
func main() {
share := make(chan int, 10)
out := make(chan string)
go printChan(out)
for j:= 1; j<=7; j++ {
go readInt(share, out, j)
}
for i:=1; i<=100; i++ {
share <- i
}
close(share)
wg1.Wait()
close(out)
wg2.Wait()
}
func readInt(in chan int, out chan string, id int) {
wg1.Add(1)
for n := range in {
out <- fmt.Sprintf("goroutine:%d was sent %d", id, n)
}
wg1.Done()
}
func printChan(out chan string){
wg2.Add(1)
for l := range out {
fmt.Println(l)
}
wg2.Done()
}
运行这个:小缓冲区,预期输出。http://play.golang.org/p/4r7rTGypPO 大缓冲区,无输出。http://play.golang.org/p/S-BDsw7Ctu
鸿蒙传说
相关分类