Swift - While 循环


只要给定条件为真,Swift 4 编程语言中的while循环语句就会重复执行目标语句。

句法

Swift 4 编程语言中while循环的语法是 -

while condition {
   statement(s)
}

这里的语句可以是单个语句或语句块。条件可以是任何表达式当条件为真时,循环会迭代。当条件变为假时,程序控制将传递到紧接循环后面的行。

数字 0、字符串 '0' 和 ""、空 list() 和 undef在布尔上下文中都是false ,所有其他值都是true。否定真值or not返回一个特殊的 false 值。

流程图

While 循环

while循环的关键点是该循环可能永远不会运行。当条件测试结果为假时,将跳过循环体并执行 while 循环后的第一条语句。

例子

var index = 10

while index < 20 {
   print( "Value of index is \(index)")
   index = index + 1
}

这里我们使用比较运算符 < 将变量索引的值与 20 进行比较。当索引的值小于 20 时,while循环会继续执行它旁边的代码块,并且一旦索引的值变得相等到了20,就出来了。执行时,上面的代码会产生以下结果 -

Value of index is 10
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
swift_loops.htm