gpt4 book ai didi

go - 为什么这个 goroutine 会阻塞?

转载 作者:数据小太阳 更新时间:2023-10-29 03:14:00 25 4
gpt4 key购买 nike

这个 goroutine block ...

go log.Fatal(http.ListenAndServe(":8000", nil))
log.Print("This doesn't print")

这个 goroutine 不会阻塞...

go func() {
log.Fatal(http.ListenAndServe(":8000", nil))
}()
log.Print("This prints")

这个 goroutine 也不会阻塞...

go http.ListenAndServe(":8000", nil)
log.Print("This prints")

最佳答案

这是根据规范:

The function value and parameters are evaluated as usual in the calling goroutine

https://golang.org/ref/spec#Go_statements

go log.Fatal(http.ListenAndServe(":8000", nil))

第一个参数是

http.ListenAndServe(":8000", nil)

这将在作为 goroutine 执行函数 log.Fatal 之前被评估,从而阻塞。

关于go - 为什么这个 goroutine 会阻塞?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42432880/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com