Keyword Reference |
首页 后退 前进 |
Exit 终止并退出运行的脚本.
Exit [返回码] 参数
备注 如果包含参数, 可将参数放在括号中. 下列语句是等效的: Exit, Exit 0, 与 Exit(0). 但 Exit() 无效.
返回代码可以使用 OnAutoItExitRegister() 函数的 @EXITCODE 获取. 相关 ExitLoop, OnAutoItExitRegister 函数示例 示例 1 ; very simple script 示例 2 ; Terminate script if no command-line arguments ---------------------------------------- |