ในกรณีที่คำสั่ง return ส่งคืนค่ายูทิลิตีจะชัดเจน ฉันได้เห็น return
คำสั่งถูกใช้งานแม้ว่าจะดูเหมือนว่าไม่จำเป็นก็ตาม ให้ฉันแสดงตัวอย่างต่อไปนี้:
ตัวอย่างที่ 1:
Loop
{
if a_index > 25
break ; Terminate the loop
if a_index < 20
continue ; Skip the below and start a new iteration
MsgBox, a_index = %a_index% ; This will display only the numbers 20 through 25
}
ตัวอย่างที่ 2:
IfWinExist, Untitled - Notepad
{
WinActivate ; Automatically uses the window found above.
return
}
ทำไมเป็น return
คำสั่งที่ใช้ในตัวอย่างที่ 2 แต่ไม่ได้ใช้ในตัวอย่างที่ 1 ทั้งสองตัวอย่างคัดลอกวาง / แก้ไขวางจากเอกสารของ autohotkey.com