doubi1624 2018-02-18 22:38
浏览 6
已采纳

通道就绪后,从多个通道中选择所有值

I'm new in golang and I faced with the problem.

I have several channels.

Some payload gets to this channels in different time.

How I can get all values one by one from channels in the time when channel ready to spit it.

For example I wrote this code:

package main

import (
    "fmt"
    "time"
    "math/rand"
)

func main() {
    arr1 := []int8{1,2,3,4,5}
    arr2 := []int8{6,7,8,9,10}

    c1 := make(chan int8)
    c2 := make(chan int8)

    go func() {
        for _, val := range arr1 {
            time.Sleep(time.Duration(rand.Intn(100)) * time.Millisecond)
            c1 <- val
        }
    }()
    go func() {
        for _, val := range arr2 {
            time.Sleep(time.Duration(rand.Intn(100)) * time.Millisecond)
            c2 <- val
        }
    }()

    select {
        case res1 := <- c1:
            fmt.Println(res1)
        case res2 := <- c2:
            fmt.Println(res2)
    }

    fmt.Println("Hello, test")
}

But in this case, I get only first value, from one of the channels.

Please, give me advise how to solve my issue.

Link to go-play https://play.golang.org/p/FOmkP57YCyR

  • 写回答

3条回答 默认 最新

  • duanpo1498 2018-02-19 00:17
    关注

    You have to do couple of things.

    1) Make sure you close channels once you are done with source. 2) Iterate over channels until it's closed.

    Example:

    package main
    
    import (
        "fmt"
        "math/rand"
        "time"
    )
    
    func main() {
        arr1 := []int8{1, 2, 3, 4, 5}
        arr2 := []int8{6, 7, 8, 9, 10}
    
        c1 := make(chan int8)
        c2 := make(chan int8)
    
        go func() {
            for _, val := range arr1 {
                time.Sleep(time.Duration(rand.Intn(100)) * time.Millisecond)
                c1 <- val
            }
            close(c1)
        }()
        go func() {
            for _, val := range arr2 {
                time.Sleep(time.Duration(rand.Intn(100)) * time.Millisecond)
                c2 <- val
            }
            close(c2)
        }()
    
        _c1 := true
        _c2 := true
        var res1, res2 int8
    
        for _c1 == true || _c2 == true {
            select {
            case res1, _c1 = <-c1:
                if _c1 == true {
                    fmt.Println(res1)
                }
            case res2, _c2 = <-c2:
                if _c2 == true {
                    fmt.Println(res2)
                }
            }
        }
    
        fmt.Println("Hello, test")
    }
    

    On execution, I got following output on screen.

    6
    1
    7
    2
    3
    4
    8
    5
    9
    10
    Hello, test
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥30 win from 窗口最大最小化,控件放大缩小,闪烁问题
  • ¥20 易康econgnition精度验证
  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致