04 2020 档案
golang中time.After一直无法跳出select循环
摘要:问题的代码如下,在for select 循环中,本想通过 time.After 设置超时时间,但一直无法退出。 package main import ( "fmt" "math/rand" "time" ) func main() { ch := make(chan int) go func() 阅读全文
posted @ 2020-04-19 20:59 怀素真 阅读(1241) 评论(0) 推荐(1) 编辑