Swift循环中的控制语句(continue语句用法)

【Swift循环中的控制语句(continue语句用法)】控制语句在循环中用于更改其正常顺序的执行。当执行离开作用域时, 将破坏在该作用域中自动创建的所有已创建对象。
Swift 4支持的控制语句列表:
继续声明 Swift 4 Continue语句用于停止当前正在执行的语句, 并在循环的下一次迭代开始时重新开始。 Continue语句与for循环, while循环和do … while循环一起使用。
使用” for” 循环, continue语句测试条件并增加循环的执行部分。
通过” while” 和” do … while” 循环, continue语句将程序控制传递给条件测试。
句法:
Swift 4循环的continue语句的语法如下:

continue

Swift 4 Continue语句流程图
Swift循环中的控制语句(continue语句用法)

文章图片
例:
var index = 10repeat {index = index + 1if( index == 25 ){continue}print( "Value of index is \(index)")} while index < 30

输出
Value of index is 11Value of index is 12Value of index is 13Value of index is 14Value of index is 15Value of index is 16Value of index is 17Value of index is 18Value of index is 19Value of index is 20Value of index is 21Value of index is 22Value of index is 23Value of index is 24Value of index is 25Value of index is 26Value of index is 27Value of index is 28Value of index is 29Value of index is 30

    推荐阅读