dou5454954610 2019-04-16 11:24
浏览 25
已采纳

Golang频道并发问题

I am experimenting with channel concept in Golang. I wrote the below program playground to implement counter using channels. But I am not getting any output, although I am doing some printing in the goroutine body.

func main() {
    wg := sync.WaitGroup{}
    ch := make(chan int)

    count := func(ch chan int) {
        var last int
        last = <-ch
        last = last + 1
        fmt.Println(last)
        ch <- last
        wg.Done()
    }

    wg.Add(10)
    for i := 1; i <= 10; i++ {
        go count(ch)

    }
}

I expect at least some output but I am getting none at all.

  • 写回答

2条回答 默认 最新

  • doutandusegang2961 2019-04-16 11:31
    关注

    When the main() function (the main goroutine) ends, your program ends as well (it doesn't wait for other non-main goroutines to finish). You must add a wg.Wait() call to the end. See No output from goroutine in Go.

    Once you do this, you'll hit a deadlock. This is because all goroutines start with attempting to receive a value from the channel, and only then would they send something.

    So you should first send something on the channel to let at least one of the goroutines to proceed.

    Once you do that, you'll see numbers printed 10 times, and again deadlock. This is because when the last goroutine tries to send its incremented number, there will be no one to receive that. An easy way to fix that is to give a buffer to the channel.

    Final, working example:

    wg := sync.WaitGroup{}
    ch := make(chan int, 2)
    
    count := func(ch chan int) {
        var last int
        last = <-ch
        last = last + 1
        fmt.Println(last)
        ch <- last
        wg.Done()
    }
    
    wg.Add(10)
    for i := 1; i <= 10; i++ {
        go count(ch)
    
    }
    go func() {
        ch <- 0
    }()
    wg.Wait()
    

    Outputs (try it on the Go Playground):

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    

    Also note that since we made the channel buffered, it's not necessary to use another goroutine to send an initial value, we can do that in the main goroutine:

    ch <- 0
    wg.Wait()
    

    This will output the same. Try it on the Go Playground.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 测距传感器数据手册i2c
  • ¥15 RPA正常跑,cmd输入cookies跑不出来
  • ¥15 求帮我调试一下freefem代码
  • ¥15 matlab代码解决,怎么运行
  • ¥15 R语言Rstudio突然无法启动
  • ¥15 关于#matlab#的问题:提取2个图像的变量作为另外一个图像像元的移动量,计算新的位置创建新的图像并提取第二个图像的变量到新的图像
  • ¥15 改算法,照着压缩包里边,参考其他代码封装的格式 写到main函数里
  • ¥15 用windows做服务的同志有吗
  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法