Go語言提供了下列幾種型別循環處理語句:
| 描述|
---|---|
重複執行語句區塊 | |
在for 迴圈中嵌套一個或多個for 迴圈 |
#for 迴圈:##for 迴圈是一個迴圈控制結構,可以執行指定次數的循環。
語法
Go 語言的 For 迴圈有 3 種形式,只有其中的一種使用分號。
和C 語言的for 一樣:
for init; condition; post { }
和C 的while 一樣:
for condition { }
和C 的for(;;) 一樣:
for { }
循環嵌套
Go 語言允許使用者在循環內使用循環。接下來我們將為大家介紹巢狀循環的使用。
語法
以下為 Go 語言巢狀循環的格式:
for [condition | ( init; condition; increment ) | Range] { for [condition | ( init; condition; increment ) | Range] { statement(s); } statement(s); }
更多golang知識請關注PHP中文網
golang教學以上是golang循環有幾種的詳細內容。更多資訊請關注PHP中文網其他相關文章!