channel
for range 循环通道对象
单向通道
单项通道常用于函数参数,只是用来限定在函数中只能进行通道传值或者通道接收值,否则出现相应错误提示。
func setVal(ch chan <- int ){
ch <- 1
}
func getVal(ch <- chan int ){
data := <- ch
fmt.Print("接收到了值",data)
}
func main(){
ch := make(chan int)
go setVal(ch)
num := <- ch
go getVal(ch)
ch <- num
}
time包下 Timer类 的 时间通道
select case 选择通道执行
default默认优先级最高,有default就执行defalut;
没有default就执行能实现解除通道阻塞的case语句;
有多个符合条件的case语句随机执行。