Swift - do...while 循环


与在循环顶部测试循环条件的forwhile循环不同, repeat...while循环在循环底部检查其条件。

Repeat ...while循环与 while 循环类似,不同之处在于 Repeat ...while循环保证至少执行一次。

句法

Swift 4 中的Repeat...while循环的语法是 -

repeat {
   statement(s);
} 
while( condition );

需要注意的是,条件表达式出现在循环的末尾,因此循环中的语句在条件测试之前执行一次。如果条件为真,则控制流跳回重复并且循环中的语句再次执行。重复此过程直到给定条件变为假。

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

流程图

重复While循环

例子

var index = 10

repeat {
   print( "Value of index is \(index)")
   index = index + 1
}
while index < 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