[GO]channel

Posted baylorqu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[GO]channel相关的知识,希望对你有一定的参考价值。

goroutine运行在相同的地址空间,因此访问共享内存必须 做好同步。goroutine奉行通过通信来共享内存,而不是共享内存通信

它跟map一样,使用make来创建,它是一个引用 ,而不是值传递

make(chan Type, capacity)

channel <- value //发送value到channel

<- channel  //接收并将其丢弃

x := <-channel  //从channel中接收数据,并赋值给x

x, ok := <-channel //功能同上,同时检查通道是否已关闭或者是否为空

以上是关于[GO]channel的主要内容,如果未能解决你的问题,请参考以下文章

Golang面经ChannelContextGoroutine

Golang面经ChannelContextGoroutine

go16---select

Go基础并发编程

[11][go] go concurrency

[11][go] go concurrency