package main
import "fmt"
var money int = 100
var update = make(chan int)
func updateM(count int) {
update<- count
}
func main() {
updateM(200)
fmt.Println(<-update)
}
が、私はその後、エラーがこのチャネル操作でデッドロックエラーが表示されるのはなぜですか?
func main() {
go updateM(200)
fmt.Println(<-update)
}
誰でも私は行くの新しい学習者です、私に言うことができなかったupdateM(200) の前に行くを追加するために、コードを変更します。どうもありがとう。
ご協力ありがとうございます –