标签: error-handling try-catch autoit
AutoIt中是否有Try and Catch的替代方案?我想知道是否有类似的东西。
答案 0 :(得分:3)
AutoIt中没有try-catch-construct。您必须使用the @error macro:
@error
call_your_function_here() If @error Then ;do your error stuff Else ;do your program stuff EndIf