- 版本 v1.1.15.01
- 指南和概述
- 常见问题(FAQ)
- 按字母排序的命令和函数索引
- AutoHotkey 脚本展示
- 变更和新功能
- 基本用法和语法
- 迁移到 AutoHotkey 1.1(AutoHotkey_L)
- 环境管理
- 本机代码互操作
- 文件、目录和磁盘管理
- Drive
- DriveGet
- DriveSpaceFree
- FileAppend
- FileCopy
- FileCopyDir
- FileCreateDir
- FileCreateShortcut
- FileDelete
- FileEncoding [AHK_L 42+]
- FileGetAttrib
- FileGetShortcut
- FileGetSize
- FileGetTime
- FileGetVersion
- FileInstall
- FileMove
- FileMoveDir
- FileOpen [AHK_L 42+]
- FileReadLine
- FileRead
- FileRecycle
- FileRecycleEmpty
- FileRemoveDir
- FileSelectFile
- FileSelectFolder
- FileSetAttrib
- FileSetTime
- IfExist / IfNotExist
- IniDelete
- IniRead
- IniWrite
- Loop(文件和文件夹)
- Loop(读取文件内容)
- SetWorkingDir
- SplitPath
- 流程控制
- 内置函数
- GUI、MsgBox、InputBox 及其他对话框
- 鼠标和键盘
- 鼠标和键盘
- #InstallKeybdHook
- #InstallMouseHook
- #KeyHistory
- BlockInput
- Click [v1.0.43+]
- ControlClick
- ControlSend / ControlSendRaw
- CoordMode
- GetKeyState
- KeyHistory
- KeyWait
- Input
- MouseClick
- MouseClickDrag
- MouseGetPos
- MouseMove
- Send / SendRaw / SendInput / SendPlay / SendEvent: 发送按键和点击
- SendLevel [v1.1.06+]
- SendMode [v1.0.43+]
- SetDefaultMouseSpeed
- SetKeyDelay
- SetMouseDelay
- SetCapsLockState/SetNumLockState/SetScrollLockState
- SetStoreCapslockMode
- 数学相关
- 屏幕管理
- 杂项命令
- 进程管理
- 注册表管理
- 声音命令
- 字符串管理
- 窗口管理
- 控件
- 窗口组
- #WinActivateForce
- DetectHiddenText
- DetectHiddenWindows
- SetTitleMatchMode
- SetWinDelay
- StatusBarGetText
- StatusBarWait
- WinActivate
- WinActivateBottom
- WinClose
- WinGet
- WinGetActiveStats
- WinGetActiveTitle
- WinGetClass
- WinGetPos
- WinGetText
- WinGetTitle
- WinHide
- WinKill
- WinMaximize
- WinMinimize
- WinMinimizeAll / WinMinimizeAllUndo
- WinMove
- WinRestore
- WinSet
- WinSetTitle
- WinShow
- WinWait
- WinWaitActive / WinWaitNotActive
- WinWaitClose
- #指令
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
Try [v1.1.04+]
守护一个或多个语句(命令或表达式)以防备由 throw 命令抛出的运行时错误和异常。
Try Statement
Try { Statements }
备注
try 命令后常跟着 区块 - 括在大括号中的一个或多个语句 (命令或表达式). 如果仅需执行单个语句, 那么此语句可以和 try 放在同一行或在其下一行, 并且大括号可以省略. 要指定仅在 try 捕获到错误时执行的代码, 请使用 catch 命令.
throw 命令或程序在运行时遇到错误时会抛出异常。当 try 区块或由其调用的函数抛出异常时,将进行下列操作:
- 如果该区块有相应的 catch 语句,则继续执行该语句。
- 如果没有 catch 语句但有 finally 语句,则执行该语句并在结束后自动再次抛出异常。
- 如果 catch 语句和 finally 语句都没有,则到 try 区块下的一行继续执行。
如果在 try 区块外执行时抛出异常,则显示错误信息并退出当前线程。
One True Brace (OTB) 风格 可以用在 try 命令中. 例如:
try { ... } catch e { ... }
相关
示例
; 示例 #1: try/catch/throw 的基本概念. try ; 尝试执行的代码. { HelloWorld() MakeToast() } catch e ; 处理由上面区块产生的首个错误/异常. { MsgBox, An exception was thrown!`nSpecifically: %e% Exit } HelloWorld() ; 总是成功. { MsgBox, Hello, world!} MakeToast() ; 总是失败. { ; 立即跳到 try 区块的错误处理程序: throw A_ThisFunc " is not implemented, sorry" }
; 示例 #2: 使用 try/catch 代替 ErrorLevel. try { ; 下列语句尝试备份特殊类型的文件: FileCopy, %A_MyDocuments%\*.txt, D:\Backup\Text documents FileCopy, %A_MyDocuments%\*.doc, D:\Backup\Text documents FileCopy, %A_MyDocuments%\*.jpg, D:\Backup\Photos } catch { MsgBox, 16,, There was a problem while backing the files up! ExitApp }
; 示例 #3: 处理 COM 错误. try { obj := ComObjCreate("ScriptControl") obj.ExecuteStatement("MsgBox ""This is embedded VBScript""") obj.InvalidMethod() ; 此行会产生运行时错误. } catch e { ; 关于e对象的更多细节,请参阅Catch。 MsgBox, 16,, % "Exception thrown!`n`nwhat: " e.what "`nfile: " e.file . "`nline: " e.line "`nmessage: " e.message "`nextra: " e.extra }
; 示例 #4: 嵌套的 try-catch 语句. try Example1() ; 任何单个语句可以和 Try 命令放在同一行. catch e MsgBox, Example1() threw %e%. Example1() { try Example2() catch e { if e = 1 throw e ; 重新抛出这个异常, 这样调用者可以捕获它. else MsgBox, Example2() threw %e%. } } Example2() { Random, o, 1, 2 throw o }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论