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

go tip

时间:2020-05-22 17:22:15      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:highlight   情况下   after   pre   time   很多   func   pac   ase   

在有很多的if-then-else语句的情况下,go语言可以写成:

package main

import (
	"fmt"
	"time"
)

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

  

go tip

标签:highlight   情况下   after   pre   time   很多   func   pac   ase   

原文地址:https://www.cnblogs.com/AKUN-FYK/p/12937853.html

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