📅  最后修改于: 2020-11-04 08:03:33             🧑  作者: Mango
在某些情况下,您需要多次执行一个代码块。通常,语句是按顺序执行的:函数的第一个语句首先执行,然后第二个执行,依此类推。
编程语言提供了各种控制结构,允许更复杂的执行路径。
循环语句使我们可以多次执行一个语句或一组语句,以下是大多数编程语言中循环语句的一般形式-
Go编程语言提供了以下类型的循环来处理循环需求。
Sr.No | Loop Type & Description |
---|---|
1 | for loopIt executes a sequence of statements multiple times and abbreviates the code that manages the loop variable. |
2 | nested loopsThese are one or multiple loops inside any for loop. |
循环控制语句从其正常顺序更改执行。当执行离开其作用域时,在该作用域中创建的所有自动对象都将被销毁。
Go支持以下控制语句-
Sr.No | Control Statement & Description |
---|---|
1 | break statementIt terminates a for loop or switch statement and transfers execution to the statement immediately following the for loop or switch. |
2 | continue statementIt causes the loop to skip the remainder of its body and immediately retest its condition prior to reiterating. |
3 | goto statementIt transfers control to the labeled statement. |
如果循环的条件永远不会为假,则循环将变为无限循环。传统上,for循环用于此目的。由于不需要形成for循环的三个表达式,因此可以通过将条件表达式保留为空或将true传递给它来进行无限循环。
package main
import "fmt"
func main() {
for true {
fmt.Printf("This loop will run forever.\n");
}
}
当条件表达式不存在时,假定它为真。您可能有一个初始化和增量表达式,但是C程序员更通常使用for(;;)构造来表示一个无限循环。
注意-您可以通过按Ctrl + C键终止无限循环。