Go教程(三)条件表达式
go的条件控制有以下几种
if
if 表达式 { // 当表达式为true的时候,才执行代码块 **注意这里没有()**
代码块
}
if…else
if 表达式{
代码块
} else { // 当if的表达式为false进入这里
代码块
}
if…else if…else
if 表达式{
代码块
} else if 表达式{
代码块
} else{
代码块
}
请参考go module来配置工程
package main
import (
"fmt"
)
func main() {
b := true
if b {
fmt.Println("true")
} else {
fmt.Print("false")
}
x := 5
if x > 0 {
fmt.Println("x > 0")
} else
Go教程(三)条件表达式最先出现在Python成神之路。
共有 0 条评论