Swift - 继续声明


Swift 4 中的continue语句告诉循环停止正在执行的操作,并在循环的下一次迭代开始时重新开始。

对于for循环,continue语句会引发条件测试并递增要执行的循环部分。对于whiledo...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
swift_loops.htm