解析:
本题考查 Go语言中 通道(channel)的相关知识点。
推荐阅读 Go 语言Channel 通道详解 来了解 相关知识点。
下面给出了从通道发送和接收数据的语法
data := <- a // 从 channel a 读取数据 a <- data // 向 channel a 写入数据