在这个例子中如何理解goroutines的执行?

时间:2019-09-08 17:22:54

标签: go

我试图理解go例程及其工作方式。在下面的示例中,我有两个go例程,每个例程都通过channel发送一些messege。我期待通道ch首先发送messege,但是为什么go readword(ch)在go timeout(t)之后执行。如果我在主函数中更改go例程调用的顺序,则将首先执行readword(ch)。我对go例程感到非常困惑?有帮助吗?

func readword(ch chan string) {

    fmt.Println("Type a word, then hit Enter.")
    var word string
    fmt.Scanf("%s", &word)
    ch <- word
}

func timeout(t chan bool) {
    t <- false
}

func main() {
    ch := make(chan string)
    go readword(ch)

    t := make(chan bool)
    go timeout(t)

    select {
    case word := <-ch:
        fmt.Println("Received", word)
    case <-t:
        fmt.Println("Timeout.")
    }
}

1 个答案:

答案 0 :(得分:5)

除非例程之间使用通道之类的同步机制进行通信,否则无法在它们之间执行执行顺序。您创建了两个goroutine,然后等待直到收到来自ch的字符串或来自t的字符串。两个goroutine之间没有显式同步,因此它们可以在单个线程中以任何顺序执行,也可以在不同线程上同时执行。 select语句将从其中包含某些内容的第一个通道读取。