golang_switch:go中switch的用法介绍

本文介绍了Go(golang)中的switch语句基础语法,包括有表达式和无表达式的用法。强调了switch的特性:多个case和default只执行一个,并解释了使用fallthrough关键字强制执行下一条case的情况。
摘要由CSDN通过智能技术生成

基础语法:

第一种:有表达式

    switch 表达式{
    case1,值2: //case后的条件可以是多个值
    	执行语句1
    case3:
    	执行语句2
    ......
    default:  //若以上条件都不满足,则执行下面的语句
    	执行语句n
    }

第二种:无表达式

    switch {
    case 条件1:
    	执行语句1
    case 条件2:
    	执行语句2
    ......
    default:  //若以上条件都不满足,则执行下面的语句
    	执行语句n
    }

注意:
1.多个case和default只能执行一个
2.case中添加fallthrough可以执行下一条case

案例:

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 the 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(123)
	whatAmI("sdf")
}

Output:

Write 2 as two
It's the weekday
It's after noon
I'm a bool
I'm an int
Don't know type string
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值