Goto ;跳转到指定的标签并继续执行
下面是实例:
···
Goto, MyLabel
...
MyLabel:
Sleep, 100
···
Gosub ;跳转到指定的标签继续执行,直到遇到 Return
下面是实例:
···
Gosub, Label1
MsgBox, The Label1 subroutine has returned (it is finished).
return
Label1:
MsgBox, The Label1 subroutine is now running.
return
···
网友评论