Swift - Continue 语句

  • 简述

    Swift 4 中的 continue 语句告诉循环停止正在执行的操作,并在循环的下一次迭代开始时重新开始。
    为一个 for 循环 continue语句导致条件测试并增加循环的执行部分。为了whiledo...while 循环 continue 语句使程序控制传递给条件测试。
  • 句法

    的语法 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