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

Golang关键字—— if/else

时间:2015-05-21 00:01:48      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:

  Golang中,if/else 关键字用于条件判断,如果满足条件就做某事,否则做另一件事:

    if age >= 18 {
        fmt.Println("成年人")
    } else {
        fmt.Println("未成年")
    }

  多重判断:

    if score >= 90 {
        fmt.Println("优秀")
    } else if score >= 70 {
        fmt.Println("良好")
    } else if score >= 60 {
        fmt.Println("一般")
    } else {
        fmt.Println("")
    }

  Golang允许在条件判断语句里声明一个变量,该变量的作用域只在该条件逻辑块内:

    if score := 40; score >= 90 {
        fmt.Println("优秀:", score)
    } else if score >= 70 {
        fmt.Println("良好")
    } else if score >= 60 {
        fmt.Println("一般")
    } else {
        fmt.Println("差:", score)
    }

 

Golang关键字—— if/else

标签:

原文地址:http://www.cnblogs.com/nianhua/p/4518465.html

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