當前位置: 首頁>>編程語言>>正文


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/zh-tw/article/4048.html,未經允許,請勿轉載。