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

A Tour of Go Switch with no condition

时间:2014-10-28 08:09:51      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   div   on   log   bs   

Switch without a condition is the same as switch true.

This construct can be a clean way to write long if-then-else chains.

package main 

import (
    "fmt"
    "time"
)

func main() {
    t := time.Now()
    switch {
    case t.Hour() < 12:
        fmt.Println("Good morning!")
    case t.Hour() < 17:
        fmt.Println("Good afternoon")
    default:
        fmt.Println("Good evening.")
    }
}

 

A Tour of Go Switch with no condition

标签:style   blog   io   color   sp   div   on   log   bs   

原文地址:http://www.cnblogs.com/ghgyj/p/4055704.html

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