我正在浏览 Go Bootcamp 并且正在阅读 Go Concurrency 一章。我之前在编程中从未使用过并发,不理解这个程序的输出:
package main
import (
"fmt"
"time"
)
func say(s string) {
for i := 0; i < 2; i++ {
time.Sleep(100 * time.Millisecond)
fmt.Println(s)
}
}
func main() {
go say("world")
say("hello")
}
输出:
hello
world
hello
Program exited.
有人可以解释为什么“世界”不像“你好”那样打印两次吗?也许阐明使用并发的想法?
请注意,此处为Go Playground 链接。
aluckdog
相关分类