exit退出当前的过程
BREAK 退出循环
ABORT 不作异常处理

解决方案 »

  1.   

    exit 为推出当前的过程;
    break为终止当前的循环
    contine为进行下一个循环
      

  2.   

    Abort: Use Abort to escape from an execution path 
    without reporting an error.Exit:The Exit procedure immediately passes control
    away from the current procedureBreak:The Break procedure causes the flow of control
    to exit a for, while, or repeat statement and continue at the next statement following the loop statement.
      

  3.   

    Abort: Use Abort to escape from an execution path 
    without reporting an error.Exit:The Exit procedure immediately passes control
    away from the current procedureBreak:The Break procedure causes the flow of control
    to exit a for, while, or repeat statement and continue at the next statement following the loop statement.