Go by Example: Switch

来自泡泡学习笔记
BrainBs讨论 | 贡献2024年3月1日 (五) 09:24的版本 (创建页面,内容为“ switch语句用于表达多个分支的条件判断。 你可以使用逗号在同一case语句中分隔多个表达式。在这个示例中,我们还使用了可选的default case。 不带表达式的switch是另一种表达if/else逻辑的方式。在这里,我们还展示了case表达式可以是非常量的情况。 类型switch比较类型而不是值。你可以使用它来发现接口值的类型。在这个示例中,变量t将具有与其子…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳到导航 跳到搜索

switch语句用于表达多个分支的条件判断。

你可以使用逗号在同一case语句中分隔多个表达式。在这个示例中,我们还使用了可选的default case。

不带表达式的switch是另一种表达if/else逻辑的方式。在这里,我们还展示了case表达式可以是非常量的情况。

类型switch比较类型而不是值。你可以使用它来发现接口值的类型。在这个示例中,变量t将具有与其子句相对应的类型。


package main

import (
    "fmt"
    "time"
)

func main() {

    i := 2
    fmt.Print("Write ", i, " as ")
    switch i {
    case 1:
        fmt.Println("one")
    case 2:
        fmt.Println("two")
    case 3:
        fmt.Println("three")
    }

    switch time.Now().Weekday() {
    case time.Saturday, time.Sunday:
        fmt.Println("It's the weekend")
    default:
        fmt.Println("It's a weekday")
    }

    t := time.Now()
    switch {
    case t.Hour() < 12:
        fmt.Println("It's before noon")
    default:
        fmt.Println("It's after noon")
    }

    whatAmI := func(i interface{}) {
        switch t := i.(type) {
        case bool:
            fmt.Println("I'm a bool")
        case int:
            fmt.Println("I'm an int")
        default:
            fmt.Printf("Don't know type %T\n", t)
        }
    }
    whatAmI(true)
    whatAmI(1)
    whatAmI("hey")
}


$ go run switch.go 
Write 2 as two
It's a weekday
It's after noon
I'm a bool
I'm an int
Don't know type string