码迷,mamicode.com
首页 > 其他好文 > 详细

switch _ golang

时间:2015-03-12 14:36:21      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

switch 1: 在条件语句中,可以写多条的语句

    2: 也可以不添加语句

package main

import (
    "fmt"
    "time"
)

func main() {

    i := 2
    fmt.Println("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")
    }

}
write  2  as 
two
its a weekday
its after noon

 

switch _ golang

标签:

原文地址:http://www.cnblogs.com/jackkiexu/p/4332182.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!