Get the App
SLTechnology News&Howtos  ›  Servers  › 

What is the channel in golang

Shulou Source: shulou.com Published: 2022-05-31 19:47:52 09月14日 Update

This article is to share with you about what channels are in golang. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

The channel type in golang is a special type with the name chan. At any time, there is only one goroutine access channel for concurrency and data acquisition, and the goroutine can communicate through the channel. We can create a goroutine with the go keyword.

The channel itself is synchronous, and the sending and receiving data of the channel are synchronous by default, and follow the first-in-first-out rule to ensure the order of data transmission.

The channel is divided into two-way channel and one-way channel.

Two-way channel:

Chan1: = make (chan int, 10)

One-way channel:

# one-way write-only channel, 10 indicates the capacity of the channel chan2: = make (chan)

Tags: Channel data cache bidirectional scene buffer one-way type blocking content individual capacity more features articles synchronization good practical special advanced Apple Docker Huawei Linux macOS MariaDB Microsoft MySQL NVidia OPPO Reno vpn OPPO Reno Redmi Shulou Tech Info Shulou Technology