位置:首頁 > 高級語言 > Swift教學 > Swift continue語句

Swift continue語句

在 Swift 編程語言中的 continue 語句告訴循環停止正在執行的語句,並在循環下一次迭代重新開始。

對於 for 循環,continue 語句使得循環的條件測試和增量部分來執行。對於 while 和 do ... while 循環,continue 語句使程序控製轉到條件測試。

語法

在 Swift 中的 continue 語句的語法如下:

continue

流程圖

Swift Continue Statement

實例

import Cocoa
 
var index = 10

do{
   index = index + 1
	
   if( index == 15 ){
      continue
   }
   println( "Value of index is \(index)")
}while index < 20 

當上述代碼被編譯和執行時,它產生了以下結果:

Value of index is 11
Value of index is 12
Value of index is 13
Value of index is 14
Value of index is 16
Value of index is 17
Value of index is 18
Value of index is 19
Value of index is 20