请帮助我理解为什么<-done在这种情况下没有接收入站频道?
func main() {
done := make(chan bool)
println("enter")
defer func() {
println("exit")
}()
defer func() {
println(" notify start")
done <- true
println(" notify end")
}()
go func() {
println(" wait start")
<-done
println(" wait end")
}()
time.Sleep(time.Millisecond) // << when this is removed, it works.
}
我期待输出是:
enter
notify start
wait start
wait end
notify end
exit
但它是:
enter
wait start
notify start
notify end
exit
我最初假设done通道以某种方式被提前关闭或清理,但即使done是全局的,它也会导致相同的意外行为。
不应该<-done阻塞直到done <- true发生?反之亦然?
解决
似乎我期望程序在退出之前等待所有 goroutine 完成。这是一个错误的假设。
这是一个肮脏的解决方法:
func main() {
done, reallydone := make(chan bool), make(chan bool)
println("enter")
defer func() {
<-reallydone
println("exit")
}()
go func() {
println(" wait start")
<-done
println(" wait end")
reallydone <- true
}()
defer func() {
println(" notify start")
done <- true
println(" notify end")
}()
time.Sleep(time.Millisecond)
}
梵蒂冈之花
慕容708150
相关分类