Go 唯讀 只寫channel

2022-08-20 06:33:16 字數 489 閱讀 1436

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()

//只能向chan裡寫資料

func send(c chan

<-int)

}//只能取channel中的資料

func recv(c

<-chan int)

}

Go 唯讀 只寫channel

go中channel可以是唯讀 只寫 同時可讀寫的。定義唯讀的channel read only make 定義只寫的channel write only make chan 可同時讀寫 read write make chan int 定義唯讀和只寫的channel意義不大,一般用於在引數傳遞中,...

Go 唯讀 只寫channel

go中channel可以是唯讀 只寫 同時可讀寫的。定義唯讀的channel read only make 定義只寫的channel write only make chan 可同時讀寫 read write make chan int 定義唯讀和只寫的channel意義不大,一般用於在引數傳遞中,...

Go 唯讀 只寫channel

go中channel可以是唯讀 只寫 同時可讀寫的。定義唯讀的channel read only make chan int 定義只寫的channel write only make chan int 可同時讀寫 read write make chan int 定義唯讀和只寫的channel意義不...