私はgolangプログラミングにとって非常に新しく、私はdeadlock
を生成する次のプログラムを持っていますが、私はなぜそれを理解できませんか?私のgoプログラムでデッドロックが発生するのはなぜですか?
もう1つのことは、doAdd
の方法でチャンネルを閉じると、無限ループに入ります。それは私にとってもちょっと変です。
ここにプログラムがあります。
var wg sync.WaitGroup
func main() {
ch1 := make(chan string)
ch2 := make(chan string)
ch3 := make(chan string)
chClose := make(chan bool)
wg.Add(3)
go doAdd(ch1, "ch1")
go doAdd(ch2, "ch2")
go doAdd(ch3, "ch3")
go waitForClose(chClose)
for {
select {
case x := <-ch1:
fmt.Println("Got from ch1 ", x)
case y := <-ch2:
fmt.Println("Got from ch2 ", y)
case z := <-ch3:
fmt.Println("Got from ch3 ", z)
case <-chClose:
fmt.Println("CLOSED")
break
}
}
}
func waitForClose(chClose chan bool) {
wg.Wait()
chClose <- true
}
func doAdd(ch chan string, name string) {
for i := 0; i < 10; i++ {
ch <- strconv.Itoa(i)
}
wg.Done()
}
、出力は次のようになります。
Got from ch1 0
Got from ch1 1
Got from ch1 2
Got from ch1 3
Got from ch1 4
Got from ch1 5
Got from ch1 6
Got from ch1 7
Got from ch1 8
Got from ch1 9
Got from ch2 0
Got from ch2 1
Got from ch2 2
Got from ch2 3
Got from ch2 4
Got from ch2 5
Got from ch2 6
Got from ch2 7
Got from ch2 8
Got from ch2 9
Got from ch3 0
Got from ch3 1
Got from ch3 2
Got from ch3 3
Got from ch3 4
Got from ch3 5
Got from ch3 6
Got from ch3 7
Got from ch3 8
Got from ch3 9
CLOSED
fatal error: all goroutines are asleep - deadlock!
goroutine 1 [select]:
main.main()
c:/PraveenData/demo/go-work/main.go:29 +0x915
exit status 2
また、 – LinearZoetrope