位置:首页 > 高级语言 > 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