Go goto语句
在Go编程语言中, goto 语句提供了一个无条件跳转,从goto语句跳转到同一个函数中的一个标记语句。
注意 - 任何编程语言中都不建议使用 goto 语句,因为这样会使程序的控制流变得难以追踪,使程序难以理解和修改。使用 goto 语句的程序可以通过使用其他结构进行重写。
语法
在Go中, goto 语句的语法如下 –
goto label;
..
.
label: statement;
这里, label 可以是除了 Go 关键字之外的任何纯文本,并且可以在 Go 程序中的任何位置(无论是上面还是下面)设置, goto 语句。
流程图
示例
package main
import "fmt"
func main() {
/* local variable definition */
var a int = 10
/* do loop execution */
LOOP: for a < 20 {
if a == 15 {
/* skip the iteration */
a = a + 1
goto LOOP
}
fmt.Printf("value of a: %d\n", a)
a++
}
}
当上述代码被编译和执行时,会产生以下结果−
value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 16
value of a: 17
value of a: 18
value of a: 19