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条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?