Keyword Reference

首页  后退  前进

Do...Until

基于 Do...Until 表达式循环.

 

Do

   语句

   ...

Until <表达式>

参数

表达式

结束 Do...Until 循环的条件表达式, 当表达式为 true 时退出循环.

备注

Do...Until 语句允许嵌套使用.

循环体语句执行之后测试条件表达式的值, 因此循环体语句至少会执行一次或多次.

相关

ContinueLoop, ExitLoop

函数示例

#include <MsgBoxConstants.au3>
Local $i = 0
Do
    MsgBox($MB_SYSTEMMODAL, "", "The value of $i is: " & $i) ; Display the value of $i.
    $i = $i + 1 ; Or $i += 1 can be used as well.
Until $i = 10 ; Increase the value of $i until it equals the value of 10.

----------------------------------------