我正在使用此函数获取从 0 到 100 的数字。
func addone(c chan int) {
for i:= 0; i <= 100; i++{
c <- i
}
close(c)
}
然后我试图输出它:
func printone(c chan int) {
for {
select {
case <-c:
fmt.Println(<-c)
time.Sleep(time.Millisecond * 50)
default:
fmt.Println("dropped")
}
}
}
主要功能:
func main() {
ch := make(chan int)
go addone(ch)
printone(ch)
}
使用 select 时 Go channel 缺少偶数,例如它是输出的:
下降 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 89 89 89 8 99 0 0
2、4、6、8 等在哪里?
为什么在关闭通道后它会向c通道发送零?我认为它会在新数据进入并获得“默认”案例之前等待?
撒科打诨
相关分类