码迷,mamicode.com
首页 > 其他好文 > 详细

channel问题思考

时间:2019-07-23 22:39:15      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:end   spl   zhang   nbsp   print   span   pack   bool   second   

先看代码

package main
import (
    "strings"
    "fmt"
    "time"
)



func main()  {

    users:=strings.Split("shenyi,zhangsan,lisi,wangwu",",")
    ages:=strings.Split("19,21,25,26",",")

    c1,c2:=make(chan bool),make(chan bool)
    ret:=make([]string,0)
    go func() {
        for _,v:=range users{
             <-c1
             ret=append(ret,v)
             time.Sleep(time.Second)
             c2<-true
        }
    }()
    go func() {
        for _,v:=range ages{
            <-c2
            ret=append(ret,v)
            c1<-true
        }
    }()
    c1<-true
    fmt.Println(ret)


}

打印:

[shenyi]

 

channel问题思考

标签:end   spl   zhang   nbsp   print   span   pack   bool   second   

原文地址:https://www.cnblogs.com/sunlong88/p/11234859.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!