Go实例学:if else 条件判断

Go语言的条件判断结构也很简单。

package main

import "fmt"

func main() {

    // 基本的例子
    if 7%2 == 0 {
        fmt.Println("7 is even")
    } else {
        fmt.Println("7 is odd")
    }

    // 只有if条件的情况
    if 8%4 == 0 {
        fmt.Println("8 is divisible by 4")
    }

    // if条件可以包含一个初始化表达式,这个表达式中的变量
    // 是这个条件判断结构的局部变量
    if num := 9; num < 0 {
        fmt.Println(num, "is negative")
    } else if num < 10 {
        fmt.Println(num, "has 1 digit")
    } else {
        fmt.Println(num, "has multiple digits")
    }
}

条件判断结构中,条件两边的小括号()是可以省略的,但是条件执行语句块两边的大括号{}不可以。

输出结果为

7 is odd
8 is divisible by 4
9 has 1 digit

在Go里面没有三元表达式"?:",所以你只能使用条件判断语句。


你可能感兴趣的:(Go实例学:if else 条件判断)