Go for循环

Go for循环

for循环是一种重复控制结构。它允许您编写需要执行特定次数的循环。

语法

Go编程语言中for循环的语法如下:

for [condition |  ( init; condition; increment ) | Range] {
   statement(s);
}

for 循环中的控制流如下所示-

  • 如果有一个 条件 ,则当条件为真时,for循环将执行。

  • 如果存在一个 for 子句 (init; condition; increment) ,则执行以下操作-

    • 首先执行 init 步骤,并且只执行一次。该步骤允许您声明和初始化任何循环控制变量。您不需要在此处放置一条语句,只要出现分号即可。

    • 接下来,计算 condition 。如果条件为真,则执行循环体。如果条件为假,则不执行循环体,控制流跳到 for 循环后的下一条语句。

    • 在执行完for循环的循环体后,控制流跳回到 increment 语句。该语句允许您更新任何循环控制变量。该语句可以为空,只要在条件后面出现分号即可。

    • 现在再次计算条件。如果条件为真,则循环执行,过程重复(循环体,然后更新,然后再次计算条件)。当条件变为假时,for循环终止。

  • 如果存在 范围 ,则for循环对范围中的每个项执行。

流程图

Go for循环

示例

package main

import "fmt"

func main() {
   var b int = 15
   var a int
   numbers := [6]int{1, 2, 3, 5} 

   /* for loop execution */
   for a := 0; a < 10; a++ {
      fmt.Printf("value of a: %d\n", a)
   }
   for a < b {
      a++
      fmt.Printf("value of a: %d\n", a)
   }
   for i,x:= range numbers {
      fmt.Printf("value of x = %d at %d\n", x,i)
   }   
}

当上述代码被编译并执行时,会产生以下结果−

value of a: 0
value of a: 1
value of a: 2
value of a: 3
value of a: 4
value of a: 5
value of a: 6
value of a: 7
value of a: 8
value of a: 9
value of a: 1
value of a: 2
value of a: 3
value of a: 4
value of a: 5
value of a: 6
value of a: 7
value of a: 8
value of a: 9
value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 15
value of x = 1 at 0
value of x = 2 at 1
value of x = 3 at 2
value of x = 5 at 3
value of x = 0 at 4
value of x = 0 at 5

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程