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

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

如何在 Golang 中使用“time.After”和“default”?

如何在 Golang 中使用“time.After”和“default”?

Go
UYOU 2022-03-07 15:52:39
我正在嘗試?yán)斫?Golang 例程的簡(jiǎn)單代碼:package mainimport (    "fmt"    "time")func sleep(seconds int, endSignal chan<- bool) {    time.Sleep(time.Duration(seconds) * time.Second)    endSignal <- true}func main() {    endSignal := make(chan bool, 1)    go sleep(3, endSignal)    var end bool    for !end {        select {        case end = <-endSignal:            fmt.Println("The end!")        case <-time.After(5 * time.Second):            fmt.Println("There's no more time to this. Exiting!")            end = true        }    }}很好,但是為什么我不能在這個(gè)“選擇”塊中使用簡(jiǎn)單的默認(rèn)值?像這樣的東西:for !end {    select {    case end = <-endSignal:        fmt.Println("The end.")    case <-time.After(4 * time.Second):        fmt.Println("There's no more time to this. Exiting!")        end = true    default:        fmt.Println("No end signal received.")    }}它得到這個(gè)輸出:? go run goroutines-timeout.goNo end signal received!No end signal received!No end signal received!No end signal received!...The end!我不明白為什么。
查看完整描述

1 回答

?
慕斯王

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

每次執(zhí)行時(shí),time.After(4 * time.Second)您都會(huì)創(chuàng)建一個(gè)新的計(jì)時(shí)器通道。該select語句無法記住它在上一次迭代中選擇的通道。您還采用了異步操作并將其變成了一個(gè)繁忙的循環(huán),從而違背了select語句的目的。


您所需要的只是圍繞您感興趣的兩個(gè)頻道進(jìn)行簡(jiǎn)單的選擇。它根本不需要循環(huán)。


select {

case <-endSignal:

    fmt.Println("The end!")

case <-time.After(4 * time.Second):

    fmt.Println("There's no more time to this. Exiting!")

}

https://play.golang.org/p/jb4EE8e6cw


如果您真的想多次輪詢,請(qǐng)將計(jì)時(shí)器設(shè)置在 for 循環(huán)之外,以便每次迭代都檢查相同的計(jì)時(shí)器


timeout := time.After(5 * time.Second)

pollInt := time.Second


for {

    select {

    case <-endSignal:

        fmt.Println("The end!")

        return

    case <-timeout:

        fmt.Println("There's no more time to this. Exiting!")

        return

    default:

        fmt.Println("still waiting")

    }

    time.Sleep(pollInt)

}


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

添加回答

舉報(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)