第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

關(guān)于goroutine中g(shù)oroutine的行為

關(guān)于goroutine中g(shù)oroutine的行為

Go
臨摹微笑 2023-07-26 19:54:43
我是 golang 新手,正在研究 goroutine。我故意編寫了使用 goroutine 來除法的簡(jiǎn)單代碼。首先,我給出基數(shù)并繼續(xù)除它的數(shù),直到它不可整除但是,我改為go split(n),split(n)它不能像下面那樣工作,這是為什么?■ 源代碼package mainimport (    "flag"    "fmt"    "log"    "net/http"    "os"    "strconv")var next = make(chan int)var quit = make(chan int)func divide(n int) {    defer func(){ quit <- 1 }()    fmt.Println("[divide] n = " + strconv.Itoa(n))    r := n % 2    if r == 0 {        next <- n / 2    }}func execute() {    fmt.Println("[execute] start")    count := 0    end   := false    for !end {        select {        case n := <- next:            count++            fmt.Println("[execute] n = " + strconv.Itoa(n) + ", count = " + strconv.Itoa(count))            go divide(n)        case _ = <- quit:            count--            fmt.Println("[execute] end. count = " + strconv.Itoa(count))            if count <= 0 {                end = true            }        }    }    fmt.Println("complete")    os.Exit(0)}func main() {    base := flag.Int("n", 1, "Input the number")    flag.Parse()    if *base <= 0 {        fmt.Println("please more than 1")        os.Exit(0)    }    go execute()    next <- *base    if err := http.ListenAndServe(":8080", nil); err != nil {        log.Fatal("ListenAndSearver:", err)    }}■ 結(jié)果(工作正常)$ go run main.go -n 6[execute] start[execute] n = 6, count = 1[divide] n = 6[execute] n = 3, count = 2[execute] end. count = 1[divide] n = 3[execute] end. count = 0complete■ 結(jié)果(不工作)$ go run main.go -n 6[execute] start[execute] n = 6, count = 1[divide] n = 6
查看完整描述

1 回答

?
叮當(dāng)貓咪

TA貢獻(xiàn)1776條經(jīng)驗(yàn) 獲得超12個(gè)贊

沒有go divide()內(nèi)部執(zhí)行:

  • execute() 從next通道讀取,調(diào)用divide

  • 除法()等待寫入next

  • execute()仍在等待divide()返回,因此程序現(xiàn)在陷入僵局。

go divide()內(nèi)部執(zhí)行:

  • execute() 從next通道讀取數(shù)據(jù),divide在新的 goroutine 中啟動(dòng),繼續(xù)等待

  • 除法()寫入next

  • execute() 從 讀取next,啟動(dòng)另一個(gè) goroutine 等。

請(qǐng)注意,一旦divide寫入next,它就會(huì)繼續(xù)寫入quit,因此您可能會(huì)在一切完成之前收到多條退出消息。


查看完整回答
反對(duì) 回復(fù) 2023-07-26
  • 1 回答
  • 0 關(guān)注
  • 182 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)