Keyword Reference

首页  后退  前进

ExitLoop

终止 While 或 Do 或 For 循环.

 

ExitLoop [等级]

参数

等级

[可选] 退出循环的级别值. 默认为 1(当前循环).

备注

如果参数" 等级 "为负数或零, 则无任何作用.

 

ExitLoop 将跳出 While, Do 或 For 循环.

如果需要同时在环路测试和循环体中检查错误, 则 ExitLoop 非常有用.

相关

ContinueLoop, Do, Exit, For, While

函数示例

#include <MsgBoxConstants.au3>
Local $iSum = 0, $iAns = 0
While 1 ;use infinite loop since ExitLoop will get called
    $iAns = InputBox("Running total=" & $iSum, _
            "   Enter a positive number.  (A negative number exits)")
    If $iAns < 0 Then ExitLoop
    $iSum = $iSum + $iAns
WEnd
MsgBox($MB_SYSTEMMODAL, "", "The sum was: " & $iSum)

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