golang的select典型用法
载自:http://yanyiwu.com/work/2014/11/08/golang-select-typical-usage.html golang 的 select 的功能和 select, poll, epoll 相似, 就是监听 IO 操作,当 IO 操作发生时,触发相应的动作。 示例: ch1 := make (chan int, 1) ch2 := make (chan int, 1) … select { case <-ch1: fmt.Println(“ch1 pop one element”) case <-ch2: fmt.Println(“ch2 pop one element”) } 注意到 select 的代码形式和 switch 非常相似, 不过 select...阅读全文