You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
golang-tutorial/docs/golang_tutorial_08.md

4.4 KiB

8 - if else 语句

上一节:第七篇 包
下一节:第九篇 循环语句

这是本Golang系列教程的第8篇。

if 是一个条件语句。if 语句的语法为:

if condition {  
}

如果 condition 为 true那么就执行 { 和 } 之间的代码。与其它语言如C不同即使 {} 之间只有一条语句,{} 也是必需的。

if 语句后面可以接可选的 else if 和 else 语句:

if condition {  
} else if condition {
} else {
}

if 后面可以接任意数量的else if语句。condition 的求值由上到下依次进行,直到某个 if 或者 else if 中的 conditiontrue 时,执行相应的代码块。如果没有一个 conditontrue,则执行 else 中的代码块。

让我们写一个简单的程序来判断一个数是奇数还是偶数:

package main

import (  
    "fmt"
)

func main() {  
    num := 10
    if num % 2 == 0 { //checks if number is even
        fmt.Println("the number is even") 
    }  else {
        fmt.Println("the number is odd")
    }
}

if num % 2 == 0 语句检测一个数除以 2 的余数是否为 0如果是则输出"the number is even",否则输出:"the number is odd"。以上程序输出:the number is even

if 语句还有如下的变体。这种形式的 if 语句先执行 statement,然后再判断 conditon

if statement; condition {  
}

让我们用这种形式的 if 改写上面的程序:

package main

import (  
    "fmt"
)

func main() {  
    if num := 10; num % 2 == 0 { //checks if number is even
        fmt.Println(num,"is even") 
    }  else {
        fmt.Println(num,"is odd")
    }
}

在上面的程序中, numif 语句中初始化。需要注意的一点是,num 只能在 if 和 else 里面进行访问,即 num 的范围仅限于if else块中。如果我们试图在 ifelse 之外访问 num,编译器将报错。

让我们用 else if 再写一个程序:

package main

import (  
    "fmt"
)

func main() {  
    num := 99
    if num <= 50 {
        fmt.Println("number is less than or equal to 50")
    } else if num >= 51 && num <= 100 {
        fmt.Println("number is between 51 and 100")
    } else {
        fmt.Println("number is greater than 100")
    }
}

在上面的程序 else if num >= 51 && num <= 100true,因此程序将输出:number is between 51 and 100

疑难杂症

else声明应该在if语句的大括号}之后的同一行中开始。如果不是,编译器会报错。

让我们通过一个程序来理解这一点。

package main

import (  
    "fmt"
)

func main() {  
    num := 10
    if num % 2 == 0 { //checks if number is even
        fmt.Println("the number is even") 
    }  
    else {
        fmt.Println("the number is odd")
    }
}

在上面的程序中,该else语句不会在if 语句}关闭后的同一行中开始。相反它从下一行开始。Go中不允许这样做。如果你运行这个程序编译器会输出错误

main.go:12:5: syntax error: unexpected else, expecting }  

原因是Go自动插入分号的方式。你可以在这里阅读https://golang.org/ref/spec#Semicolons 的分号插入规则。

在规则中,指定在}后面插入分号如果这是分号的最后一个标记。所以在if语句}之后自动插入一个分号。

所以我们的程序变成了:

if num%2 == 0 {  
      fmt.Println("the number is even") 
};  //semicolon inserted by Go
else {  
      fmt.Println("the number is odd")
}

分号插入后。您可以在行号中看到分号插入。上面的代码段中的3个。

既然if{...} else {...}是一个单一的陈述,分号就不应该出现在它的中间。因此,需要else在关闭后放置在同一行中}

我通过}在if语句关闭后移动else来重写程序,以防止自动分号插入。

package main

import (  
    "fmt"
)

func main() {  
    num := 10
    if num%2 == 0 { //checks if number is even
        fmt.Println("the number is even") 
    } else {
        fmt.Println("the number is odd")
    }
}

现在编译器会很开心,我们也是如此。

希望你喜欢阅读。请留下宝贵的意见和反馈:)