Go语言示例 --7switch/case语句

1. switch/case语句

switch.go源代码定义switch/case语句的使用。

package main
import "fmt"

func main(){
    i := 7%2
    switch i{
        case 0:
            fmt.Println("7 is even")
        default:
            fmt.Println("7 is odd")
    }
}

解释执行。

$ go run switch.go
7 is odd


参考资料

[1. Go语言的switch/case语句] https://gobyexample.com/switch

你可能感兴趣的:(Go编程,分布式集群)