Swift 在循环中的控制语句

Swift 在循环中的控制语句

控制语句在循环中使用,用于改变执行顺序。当执行离开作用域时,自动创建的所有对象都会被销毁。

Swift 4支持的控制语句列表:

Continue语句

Swift 4中的 continue 语句用于停止当前正在执行的语句,并从下一次循环迭代的开始处重新开始。continue语句可配合for循环、while循环和do…while循环使用。

对于 for 循环,continue语句检查条件并增加循环的部分以执行。

对于 while和do…while 循环,continue语句将程序控制传递给条件测试。

语法

Swift 4循环中continue语句的语法如下:

continue 

Swift 4的continue语句的流程图

Swift 在循环中的控制语句

示例

var index = 10

repeat {
   index = index + 1
   if( index == 25 ){
      continue
   }
   print( "Value of index is \(index)")
} while index < 30

输出:

Value of index is 11
Value of index is 12
Value of index is 13
Value of index is 14
Value of index is 15
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
Value of index is 21
Value of index is 22
Value of index is 23
Value of index is 24
Value of index is 25
Value of index is 26
Value of index is 27
Value of index is 28
Value of index is 29
Value of index is 30

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程