golang语法总结(十四):跳转语句goto、break、continue

前端之家收集整理的这篇文章主要介绍了golang语法总结(十四):跳转语句goto、break、continue前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
和其它许多语言用法大致一样,三种语法支持配合标签使用,标签区分大小写

  • goto

    
    
package mainimport "fmt"func main() { var i int= 1if i <=10goto LABEL} fmt.Println("before label") LABEL:"after label")}
输出
after label

  • break

   
   
for i:=0;i<100++ jj(==4break}}
输出
0
1
2
3
4

  • continue

42continue
0
1
2
0
1
2
0
1
2
0
1
2
原文链接:/go/189937.html

猜你在找的Go相关文章