Go에서 모든 채널이 닫힐 때 Select 문을 어떻게 깨뜨릴 수 있나요?

Linda Hamilton
풀어 주다: 2024-11-13 16:47:02
원래의
143명이 탐색했습니다.

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿