为什么这个 Golang 代码不多次选择。频道工作后?
请参阅下面的代码。永远不会发出"超时"消息。为什么?
package main
import (
"fmt"
"time"
)
func main() {
count := 0
for {
select {
case <-time.After(1 * time.Second):
count++
fmt.Printf("tick %dn", count)
if count >= 5 {
fmt.Printf("ughn")
return
}
case <-time.After(3 * time.Second):
fmt.Printf("timeoutn")
return
}
}
}
在操场上运行它:http://play.golang.org/p/1gku-CWVAh
输出:
tick 1
tick 2
tick 3
tick 4
tick 5
ugh
因为time.After
是一个函数,所以每次迭代都会返回一个新通道。如果希望此通道对于所有迭代都相同,则应在循环之前保存它:
timeout := time.After(3 * time.Second)
for {
select {
//...
case <-timeout:
fmt.Printf("timeoutn")
return
}
}
游乐场:http://play.golang.org/p/muWLgTxpNf。
即使@Ainar-G已经提供了答案,另一种可能性是使用time.Tick(1e9)
每秒生成一个时间刻度,然后在指定的时间段后侦听timeAfter
通道。
package main
import (
"fmt"
"time"
)
func main() {
count := 0
timeTick := time.Tick(1 * time.Second)
timeAfter := time.After(5 * time.Second)
for {
select {
case <-timeTick:
count++
fmt.Printf("tick %dn", count)
if count >= 5 {
fmt.Printf("ughn")
return
}
case <-timeAfter:
fmt.Printf("timeoutn")
return
}
}
}