Go 中的死锁:理解并解决“所有 Goroutines 都处于睡眠状态”
在提供的 Go 代码片段中,由于以下原因发生了死锁对 goroutine 通信的误解。该程序旨在模拟卡车的装卸,使用 goroutine 来处理卡车卸载。然而,当加载过程完成时,代码无法关闭卡车通道(ch),从而导致死锁。
要解决此死锁,关键是一旦所有卡车都关闭后,关闭卡车通道(ch)已加载。这向 UnloadTrucks goroutine 发出信号,表明将不再发送卡车,从而允许其返回。
实现此目的的一种方法是使用 WaitGroup,如以下代码所示:
// Define a WaitGroup to track the completion of the loading goroutines var wg sync.WaitGroup // Start goroutines to load trucks go func() { // Load trucks and send them over the truck channel for t := range trucks { go func(tr Truck) { itm := Item{} itm.name = "Groceries" fmt.Printf("Loading %s\n", tr.name) tr.Cargo = append(tr.Cargo, itm) ch <- tr wg.Done() // Signal the WaitGroup that the loading is complete }(trucks[t]) } }() // Use the WaitGroup to wait for all loading goroutines to complete wg.Wait() // Close the truck channel after all loading is finished close(ch) // Start the UnloadTrucks goroutine UnloadTrucks(ch)
一旦所有卡车都已装载,通过关闭卡车通道 (ch),UnloadTrucks goroutine 可以终止,从而打破僵局。该程序现在将成功完成,按预期卸载所有卡车。
以上是如何解决Go中Goroutine通信中的'All Goroutine Are Sleep”死锁?的详细内容。更多信息请关注PHP中文网其他相关文章!