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