这段代码可以正常工作,我的问题是为什么。我了解到,在阻塞之前,您只能将一个值发送到无缓冲通道。但是在我的代码中,我写了两次,但是来自不同的 go 例程,它可以工作。如果有人可以向我解释原因,将不胜感激!
func main(){
var ch chan string =make(chan string)
go write(ch)
go write2(ch)
go read(ch)
select{}
}
func write(ch chan string){
for{
ch<-"write1"
}
}
func write2(ch chan string){
for{
ch<-"write2"
}
}
func read(ch chan string){
for{
time.Sleep(time.Second)
select{
case res:= <-ch: fmt.Println(res)
case <-time.After(time.Millisecond*200): fmt.Println("time out")
}
}
}