为什么这个Golang代码不能在多个时间内进行选择.

前端之家收集整理的这篇文章主要介绍了为什么这个Golang代码不能在多个时间内进行选择.前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么这个Golang代码不能在多个时间内进行选择.

见下面的代码.永远不会发出“超时”消息.为什么?

package main

import (
    "fmt"
    "time"
)

func main() {
    count := 0
    for {
        select {
        case <-time.After(1 * time.Second):
            count++
            fmt.Printf("tick %d\n",count)
            if count >= 5 {
                fmt.Printf("ugh\n")
                return
            }
        case <-time.After(3 * time.Second):
            fmt.Printf("timeout\n")
            return
        }
    }
}

在Playground: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("timeout\n")
        return
    }
}

游乐场:http://play.golang.org/p/muWLgTxpNf.

原文链接:https://www.f2er.com/go/186870.html

猜你在找的Go相关文章