首頁 > 後端開發 > Golang > 主體

如何解決 Go 中的'All Goroutines Are Asleep - Deadlock”錯誤?

Mary-Kate Olsen
發布: 2024-11-23 10:16:11
原創
987 人瀏覽過

How to Resolve the

Go:致命錯誤「所有Goroutine 都處於睡眠狀態- 死鎖」解釋

在Go 中,送到無緩衝通道會阻塞發送者,直到接收器可用。在提供的程式碼中,負責向 file1chan 通道發送單字的 goroutine 是唯一的 goroutine,並且沒有接收者。因此,發送者被無限期地阻塞,導致死鎖。

使用新 Goroutine 的解決方案:

一個解決方案是建立一個單獨的 Goroutine 來處理傳送字。這個goroutine不會阻塞主goroutine並允許並發執行。

func main() {
    f, _ := os.Open("D:\input1.txt")
    scanner := bufio.NewScanner(f)
    file1chan := make(chan string)
    go func() { // start a new goroutine that sends strings down file1chan 
        for scanner.Scan() {
            line := scanner.Text()

            // Split the line on a space
            parts := strings.Fields(line)

            for i := range parts {
                file1chan <- parts[i]
            }
        }
        close(file1chan)
    }()
    print(file1chan) // read strings from file1chan
}
登入後複製

使用緩衝通道的解決方案:

另一個解決方案是建立一個緩衝通道,它允許同時發送和接收多個值。對於給定的問題,緩衝區大小為 1 就足夠了。

func main() {
    f, _ := os.Open("D:\input1.txt")
    scanner := bufio.NewScanner(f)
    file1chan := make(chan string, 1) // buffer size of one
    for scanner.Scan() {
        line := scanner.Text()

        // Split the line on a space
        parts := strings.Fields(line)

        for i := range parts {
            file1chan <- parts[i]
        }
    }
    close(file1chan) // we're done sending to this channel now, so we close it.
    print(file1chan)
}
登入後複製

以上是如何解決 Go 中的'All Goroutines Are Asleep - Deadlock”錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板