在 Go (Golang) 中,控制流是使用几个基本结构来管理的,包括条件语句(if、else)、循环(for)和 switch 语句。以下是这些构造在 Go 中如何工作的概述:
基本声明
package main import "fmt" func main() { age := 20 if age >= 18 { fmt.Println("You are an adult.") } }
'if-else 语句'示例
`包主
导入“fmt”
func main() {
年龄 := 16
if age >= 18 { fmt.Println("You are an adult.") } else { fmt.Println("You are not an adult.") }
}
`
'if-else if-else' 语句:
package main import "fmt" func main() { age := 20 if age >= 21 { fmt.Println("You can drink alcohol.") } else if age >= 18 { fmt.Println("You are an adult, but cannot drink alcohol.") } else { fmt.Println("You are not an adult.") } }
2.循环:for
Go 使用“for”循环来满足所有循环需求;它没有“while”或循环
基本的“for”循环:
package main import "fmt" func main() { for i := 0; i < 5; i++ { fmt.Println(i) } }
'for' 作为 'while' 循环:
package main import "fmt" func main() { i := 0 for i < 5 { fmt.Println(i) i++ } }
无限循环:
package main func main() { for { // This loop will run forever } }
带有“range”的“for”循环:
这通常用于迭代切片、数组、映射或字符串。
package main import "fmt" func main() { numbers := []int{1, 2, 3, 4, 5} for index, value := range numbers { fmt.Println("Index:", index, "Value:", value) } }
基本“开关”
package main import "fmt" func main() { day := "Monday" switch day { case "Monday": fmt.Println("Start of the work week.") case "Friday": fmt.Println("End of the work week.") default: fmt.Println("Midweek.") } }
在一个 case 中切换多个表达式:
package main import "fmt" func main() { day := "Saturday" switch day { case "Saturday", "Sunday": fmt.Println("Weekend!") default: fmt.Println("Weekday.") } }
不带表达式的 switch 的作用就像一串 if-else 语句。
package main import "fmt" func main() { age := 18 switch { case age < 18: fmt.Println("Underage") case age >= 18 && age < 21: fmt.Println("Young adult") default: fmt.Println("Adult") } }
package main import "fmt" func main() { defer fmt.Println("This is deferred and will run at the end.") fmt.Println("This will run first.") }
恐慌与恢复
package main import "fmt" func main() { defer func() { if r := recover(); r != nil { fmt.Println("Recovered from panic:", r) } }() fmt.Println("About to panic!") panic("Something went wrong.") }
以上是圈子里有趣的控制流的详细内容。更多信息请关注PHP中文网其他相关文章!