ホームページ > バックエンド開発 > Golang > golangチャンネルとは何ですか

golangチャンネルとは何ですか

(*-*)浩
リリース: 2019-12-03 09:29:02
オリジナル
2816 人が閲覧しました

golangチャンネルとは何ですか

Go 言語のチャネルは、ゴルーチン間のロックのない通信を実現するための重要なメカニズムであり、マルチスレッドの同時実行プログラムの作成をシンプル、柔軟、そしてアクセスしやすくします。

チャネルは Go のコア タイプであり、同時コア ユニットが通信用のデータを送受信できるパイプと考えることができます。 (推奨学習: go)

その演算子は矢印 <- です。

ch <- v    // 发送值v到Channel ch中
v := <-ch  // 从Channel ch中接收数据,并将数据赋值给v
ログイン後にコピー

チャネル構造

type hchan struct {
   qcount   uint           // total data in the queue 队列中存在的个数
   dataqsiz uint           // size of the circular queue buffer大小 实现看起来是个循环数组
   buf      unsafe.Pointer // points to an array of dataqsiz elements 数组指针
   elemsize uint16       //channel类型的大小
   closed   uint32      //channel是否关闭
   elemtype *_type // element type //channel 类型
   sendx    uint   // send index  //发送index
   recvx    uint   // receive index //接收index
   recvq    waitq  // list of recv waiters //接收链表 即读channel的goroutine
   sendq    waitq  // list of send waiters //发送链表 即写channel的goroutine

   // lock protects all fields in hchan, as well as several
   // fields in sudogs blocked on this channel.
   //
   // Do not change another G&#39;s status while holding this lock
   // (in particular, do not ready a G), as this can deadlock
   // with stack shrinking.
   lock mutex
}
ログイン後にコピー

以上がgolangチャンネルとは何ですかの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

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