Swift Continue语句
Swift 4中的 continue 语句告诉循环停止当前操作,并从下一个迭代开始重新执行循环。
对于 for 循环, continue 语句使得条件测试和循环的递增部分得以执行。对于 while 和 do…while 循环, continue 语句将程序控制传递到条件测试。
语法
Swift 4中 continue 语句的语法如下所示−
continue
流程图
示例
var index = 10
repeat {
index = index + 1
if( index == 15 ){
continue
}
print( "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