Go 只读/只写channel

Posted lmh001

tags:

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

Go中channel可以是只读、只写、同时可读写的。

//定义只读的channel

read_only := make (<-chan int)

 

//定义只写的channel

write_only := make (chan<- int)

 

//可同时读写

read_write := make (chan int)

 

定义只读和只写的channel意义不大,一般用于在参数传递中,见代码:

package main

import (
    "fmt"
    "time"
)

func main() {
    c := make(chan int)
    go send(c)
    go recv(c)
    time.Sleep(3 * time.Second)
}
//只能向chan里写数据
func send(c chan<- int) {
    for i := 0; i < 10; i++ {
        c <- i
    }
}
//只能取channel中的数据
func recv(c <-chan int) {
    for i := range c {
        fmt.Println(i)
    }
}

 

以上是关于Go 只读/只写channel的主要内容,如果未能解决你的问题,请参考以下文章

go16---select

[Go] 通过 17 个简短代码片段,切底弄懂 channel 基础

channel

golang 之 channel

golang 片段7 for https://medium.com/@francesc/why-are-there-nil-channels-in-go-9877cc0b2308

Go管道注意细节