Go ですべてのチャネルが閉じているときに select ステートメントから抜け出すにはどうすればよいですか?

Linda Hamilton
リリース: 2024-11-13 16:47:02
オリジナル
144 人が閲覧しました

How to Break Out of a Select Statement When All Channels Are Closed in Go?

Breaking Out of a Select Statement When All Channels Are Closed

Consider a scenario where multiple goroutines send data to individual channels, and you wish to consume this data in an arbitrary order. Using a select statement offers a convenient way to handle concurrent input from multiple sources. However, the challenge arises when you need to exit the loop only when all channels are closed.

Naive Solution

An intuitive approach might involve checking the availability of each channel by using the ok flag. However, this solution is prone to errors because a closed channel becomes available again if it's selected. This leads to an infinite loop, as demonstrated in this playground example: http://play.golang.org/p/rOjdvnji49.

Improved Solution

A more effective approach is to utilize the fact that a nil channel is never ready for communication. Each time a channel closes, it can be set to nil, ensuring that it's excluded from future select statements. This guarantees that the loop only terminates when all channels have closed:

for {
    select {
    case x, ok := <-ch:
        fmt.Println("ch1", x, ok)
        if !ok {
            ch = nil
        }
    case x, ok := <-ch2:
        fmt.Println("ch2", x, ok)
        if !ok {
            ch2 = nil
        }
    }

    if ch == nil && ch2 == nil {
        break
    }
}
ログイン後にコピー

Playground example: http://play.golang.org/p/8lkV_Hffyj

Practical Considerations

In practice, it's unlikely that you'll need to handle a large number of channels in a single select statement. If such a scenario arises, it's advisable to use a more specialized solution, such as a channel multiplexer, to avoid cluttering the code with excessive nil checks.

以上がGo ですべてのチャネルが閉じているときに select ステートメントから抜け出すにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート