當前位置: 首頁>>編程語言>>正文


Go語言教程:switch分支結構

返回Go語言教程首頁

概念簡介

switch是多分支情況時快捷的條件語句。

例程代碼


package main

import "fmt"
import "time"

func main() {

    // 一個基本的 `switch`。
    i := 2
    fmt.Print("write ", i, " as ")
    switch i {
    case 1:
        fmt.Println("one")
    case 2:
        fmt.Println("two")
    case 3:
        fmt.Println("three")
    }

    // 在同一個 `case` 語句中,你可以使用逗號來分隔多個表
    // 達式。在這個例子中,我們還使用了可選的
    // `default` 分支。
    switch time.Now().Weekday() {
    case time.Saturday, time.Sunday:
        fmt.Println("It's the weekend")
    default:
        fmt.Println("It's a weekday")
    }

    // 不帶表達式的 `switch` 是實現 if/else 邏輯的另一種
    // 方式。這裏還展示了 `case` 表達式也可以不使用常量。
    t := time.Now()
    switch {
    case t.Hour() < 12:
        fmt.Println("It's before noon")
    default:
        fmt.Println("It's after noon")
    }

    // 類型開關 (`type switch`) 比較類型而非值。可以用來發現一個接口值的
    // 類型。在這個例子中,變量 `t` 在每個分支中會有相應的類型。
    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

課程導航

學習上一篇:Go語言教程:if/else條件判斷    學習下一篇:Go語言教程:數組

相關資料

本例程github源代碼:https://github.com/xg-wang/gobyexample/tree/master/examples/switch

Go語言switch分支結構

本文由《純淨天空》出品。文章地址: https://vimsky.com/zh-tw/article/4007.html,未經允許,請勿轉載。