switch a{
case b:
执行内容b
case c:
执行内容c
}
golang中case后自带break跳出功能,既:满足case b 执行内容b后自动跳出,不会去走case c
select {
case <- ch1:
执行内容b
case -<ch2:
执行内容c
default:
fmt.Println("channel is full")
}
select 的代码形式和 switch 非常相似, 不过 select 的 case 里的操作语句只能是【IO 操作】