当前位置: 首页>>编程语言>>正文


Go语言教程:通道方向

返回Go语言教程首页

概念简介

当使用通道作为函数的参数时,你可以指定这个通道是不是
只用来发送或者接收值。这个特性提升了程序的类型安全性。

例程代码


package main

import "fmt"

// `ping` 函数定义了一个只允许发送数据的通道。尝试使用这个通
// 道来接收数据将会得到一个编译时错误。
func ping(pings chan<- string, msg string) {
    pings <- msg
}

// `pong` 函数允许通道(`pings`)来接收数据,另一通道
// (`pongs`)来发送数据。
func pong(pings <-chan string, pongs chan<- string) {
    msg := <-pings
    pongs <- msg
}

func main() {
    pings := make(chan string, 1)
    pongs := make(chan string, 1)
    ping(pings, "passed message")
    pong(pings, pongs)
    fmt.Println(<-pongs)
}

执行&输出


$ go run channel-directions.go
passed message

课程导航

学习上一篇:Go语言教程:通道同步    学习下一篇:Go语言教程:通道选择器

相关资料

本例程github源代码:https://github.com/xg-wang/gobyexample/tree/master/examples/channel-directions

Go语言通道方向

本文由《纯净天空》出品。文章地址: https://vimsky.com/article/4048.html,未经允许,请勿转载。