Go 唯讀 只寫channel

2022-03-12 19:17:31 字數 843 閱讀 2506

go中channel可以是唯讀、只寫、同時可讀寫的。

//定義唯讀的channel

read_only := make (

//定義只寫的channel

write_only := make (chan

//可同時讀寫

read_write := make (chan int)

定義唯讀和只寫的channel意義不大,一般用於在引數傳遞中,見**:

package main

import (

"fmt"

"time"

)func main()

//只能向chan裡寫資料

func send(c chan

}//只能取channel中的資料

func recv(c

}

go中channel可以是唯讀、只寫、同時可讀寫的。

//定義唯讀的channel

read_only := make (

//定義只寫的channel

write_only := make (chan

//可同時讀寫

read_write := make (chan int)

定義唯讀和只寫的channel意義不大,一般用於在引數傳遞中,見**:

package main

import (

"fmt"

"time"

)func main()

//只能向chan裡寫資料

func send(c chan

}//只能取channel中的資料

func recv(c

}

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意義不...

Go 唯讀 只寫channel

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