概念簡介
當使用通道作為函數的參數時,你可以指定這個通道是不是
隻用來發送或者接收值。這個特性提升了程序的類型安全性。
例程代碼
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