我试图理解为什么使通道的缓冲区大小更大的变化会导致我的代码意外运行。如果缓冲区小于我的输入(100英寸),则输出是预期的,即7个goroutine每个读取输入的子集并在另一个打印它的通道上发送输出。如果缓冲区的大小与输入相同或大于输入,则不会输出任何错误。我在错误的时间关闭了一个频道吗?我对缓冲区如何工作有错误的期望吗?或者,别的什么?
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
答案 0 :(得分:4)
这与缓冲区的大小没有任何关系。添加缓冲区会在您调用waitGroup.Add(1)
你必须在发送goroutine之前添加到WaitGroup
,否则你可能会在<{em> {{1}之前调用Wait()
执行。
http://play.golang.org/p/YaDhc6n8_B
它在第一个而不是第二个工作的原因是因为同步发送确保gouroutines至少执行了那么远。在第二个示例中,for循环填满了通道,关闭它并在其他任何事情发生之前调用Wait。