バッファリングされたチャネル内の要素の数はどのようにして決定しますか?

Mary-Kate Olsen
リリース: 2024-11-14 14:28:02
オリジナル
400 人が閲覧しました

How Do You Determine the Number of Elements in a Buffered Channel?

Measuring the Number of Elements in a Buffered Channel

Buffered channels provide a convenient means of communication between goroutines while allowing for temporary storage of elements. To effectively manage flow control, it becomes necessary to determine the number of elements currently present in a channel.

Using the len Function

The Go language provides the len built-in function, which can be used to obtain the length of various data structures, including channels. In the context of a buffered channel, the len function returns the number of elements that are currently queued unread in the channel buffer.

Code Example

The following code demonstrates the use of the len function to measure the number of elements in a buffered channel:

package main

import "fmt"

func main() {
    c := make(chan int, 100) // create a buffered channel with a capacity of 100
    for i := 0; i < 34; i++ {
        c <- 0 // send 34 elements to the channel
    }
    fmt.Println(len(c)) // print the number of unread elements in the channel
}
ログイン後にコピー

Output

Running the code will produce the following output:

34
ログイン後にコピー

This confirms that the channel contains 34 elements. It's important to note that due to concurrency, the measurement may not be exact in all cases, as pre-emption could occur between measurement and action.

以上がバッファリングされたチャネル内の要素の数はどのようにして決定しますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

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