我正在尝试在频道中使用范围和关闭来更好地理解它。以下是我根据自己的理解尝试的代码示例。
执行下面的代码后,我得到代码下面提到的错误。
代码:
package main
import (
"fmt"
)
func main() {
str := "hello"
hiChannel := make(chan string, 5)
for j := 1; j <= 5; j++ {
go func(hi string) {
hiChannel <- hi
}(str)
}
defer close(hiChannel)
for s := range hiChannel {
fmt.Println(s)
}
}
错误:
go run restsample/restsample.go
hello
hello
hello
hello
hello
fatal error: all goroutines are asleep - deadlock!
goroutine 1 [chan receive]:
main.main()
C:/Users/Indian/personal/Workspaces/Learning/src/restsample/restsample.go:16 +0x169
exit status 2
慕沐林林
茅侃侃
相关分类