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

為什麼Go中需要等待select?

王林
發布: 2024-02-11 08:24:09
轉載
1188 人瀏覽過

為什麼Go中需要等待select?

php小編子墨介紹:在Go語言中,select語句是一種非常重要的控制流程語句,它用於同時監聽多個通道的操作,實現並發控制。為什麼需要等待select呢?這是因為在同時程式設計中,我們通常需要同時處理多個通道的資料或事件,而select語句可以幫助我們監聽多個通道,一旦其中任意一個通道可操作,就會執行對應的操作,從而實現並發處理。透過使用select,我們可以有效地避免阻塞,提高程式的回應性和並發能力。

問題內容

我剛剛學習了上下文取消。 這是我的程式碼。

package main

import (
  "fmt"
  "context"
)

func main() {
  ctx := context.Background()

  do(ctx)
}

func do(ctx context.Context) {
  ctx, ctxCancel := context.WithCancel(ctx)

  resultCh := make(chan string)

  go terminate(ctx, resultCh)

  resultCh <- "value1"
  resultCh <- "value2"

  fmt.Println("pre cancel")

  ctxCancel()

  fmt.Println("post cancel")
}

func terminate(ctx context.Context, ch <-chan string) {
  for {
    select {
    case <-ctx.Done():
      fmt.Println("terminate")
      return
    case result := <-ch:
      fmt.Println(result)
    }
  }
}
登入後複製

想問

為什麼會發生這種情況。 我需要什麼知識?

我期待輸出。

但得到的實際輸出不包含「終止」。

value1
value2
pre cancel
terminate
post cancel
登入後複製

固定程式碼

我在取消功能下新增了 time.Sleep 。 那麼輸出就是我的預期。

ctxCancel()
time.Sleep(100 * time.Millisecond) // add
登入後複製

解決方法

據我了解,使用 select 背後的核心思想是等待至少一種情況「準備好」。我在下面提供了一個範例,可能會有所幫助。這裡 select 用於等待從通道 ch 接收值或發生 1 秒逾時。

import (
    "fmt"
    "time"
)

func main() {
    ch := make(chan int)

    go func() {
        // Simulate some time-consuming operation
        time.Sleep(2 * time.Second)
        ch <- 42
    }()

    select {
    case result := <-ch:
        fmt.Println("Received result:", result)
    case <-time.After(1 * time.Second):
        fmt.Println("Timeout reached")
    }
}
登入後複製

以上是為什麼Go中需要等待select?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:stackoverflow.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!