switch 语句

switch 语句也是一种经典控制语句,可以看做是 if-else 语句链的简写。

/_src/tour/switch.go

  1. package main
  2.  
  3. import (
  4. "fmt"
  5. "runtime"
  6. )
  7.  
  8.  
  9. func main() {
  10. fmt.Print("Go runs on ")
  11.  
  12. switch os := runtime.GOOS; os {
  13. case "darwin":
  14. fmt.Println("OS X.")
  15.  
  16. case "linux":
  17. fmt.Println("Linux.")
  18.  
  19. default:
  20. // freebsd, openbsd
  21. // plan9, windows...
  22. fmt.Printf("%s.\n", os)
  23. }
  24. }

Go 语言 switch 结构跟 CC++JavaJavaScript 以及 PHP 等类似,不同的是, Go 只执行匹配的 case 代码体,不包括下面的。对于其他语言,一般需要在每个 case 末尾处用 break 语句来结束。实际上, Go 相当于自动在每个 case 末尾添加了 break 语句,这避免了大量因为漏掉 break 而导致的错误。

另外, Go 语言 switch 更为灵活, case 条件不必是常量,也不必是整数。

检查顺序

switch 从上往下对 case 进行检查,直到匹配。

/_src/tour/switch-evaluation-order.go

  1. package main
  2.  
  3. import (
  4. "fmt"
  5. "time"
  6. )
  7.  
  8.  
  9. func main() {
  10. fmt.Println("When's Saturday?")
  11. today := time.Now().Weekday()
  12. switch time.Saturday {
  13. case today + 0:
  14. fmt.Println("Today.")
  15. case today + 1:
  16. fmt.Println("Tomorrow.")
  17. case today + 2:
  18. fmt.Println("In two days.")
  19. default:
  20. fmt.Println("Too far away.")
  21. }
  22. }

举另一个例子,如果 i 的值为零,那么函数 f 就不会被调用了:

  1. switch i {
  2. case 0:
  3. case f():
  4. }

省略条件

Go 语言, switch 条件可以省略,等价于 switch true 。这种结构非常简洁,可以用来代替过长的 if-else 链。

/_src/tour/switch-with-no-condition.go

  1. package main
  2.  
  3. import (
  4. "fmt"
  5. "time"
  6. )
  7.  
  8.  
  9. func main() {
  10. t := time.Now()
  11. switch {
  12. case t.Hour() < 12:
  13. fmt.Println("Good morning!")
  14. case t.Hour() < 17:
  15. fmt.Println("Good afternoon.")
  16. default:
  17. fmt.Println("Good evening.")
  18. }
  19. }

下一步

下一节 我们一起来看看 Go 语言 defer 语句

订阅更新,获取更多学习资料,请关注我们的 微信公众号

../_images/wechat-mp-qrcode.png小菜学编程

微信打赏