cch123 / blog_comment

comments of xargin.com
8 stars 0 forks source link

Go 系列文章 8: select #79

Open cch123 opened 6 years ago

cch123 commented 6 years ago

http://xargin.com/go-select/

itcuihao commented 6 years ago
outer:
for {
    select {
        case d, ok := <-ch1:
            if !ok {
                break outer
            }
    }
}

假如想break 之后,不再进入for 该怎么处理啊

cch123 commented 6 years ago

break 了就不会进去了。。。。

itcuihao commented 6 years ago

哦,寻思顺序执行 goto outer 又进for循环了,2333.....

rfyiamcool commented 6 years ago

代码能不能带一点颜色,亮骚一点的

cch123 commented 6 years ago

@rfyiamcool , ghost 默认主题,骚不动啊

contestjia commented 6 years ago

1.10.3 的go源码,我看还是有type hselect struct的啊,这里有什么变动吗

cch123 commented 6 years ago

@contestjia ,master 分支我之前看的时候已经改了,1.10 其实已经是半年多前的版本了 目前的 master 分支应该是 1.11(也可能是 1.12)

contestjia commented 6 years ago

@cch123 @contestjia ,master 分支我之前看的时候已经改了,1.10 其实已经是半年多前的版本了 目前的 master 分支应该是 1.11(也可能是 1.12)

1.11的确改了