Lua 語言中的 goto 語句允許將控制流程無條件地轉(zhuǎn)到被標記的語句處。
語法格式如下所示:
goto Label
Label 的格式為:
:: Label ::
以下示例在判斷語句中使用 goto:
local a = 1 ::label:: print("--- goto label ---") a = a+1 if a < 3 then goto label -- a 小于 3 的時候跳轉(zhuǎn)到標簽 label end輸出結(jié)果為:
--- goto label --- --- goto label ---
從輸出結(jié)果可以看出,多輸出了一次 --- goto label ---。
以下示例演示了可以在 lable 中設(shè)置多個語句:
i = 0 ::s1:: do print(i) i = i+1 end if i>3 then os.exit() -- i 大于 3 時退出 end goto s1
輸出結(jié)果為:
0 1 2 3
有了 goto,我們可以實現(xiàn) continue 的功能:
for i=1, 3 do if i <= 2 then print(i, "yes continue") goto continue end print(i, " no continue") ::continue:: print([[i'm end]]) end
輸出結(jié)果為:
1 yes continue i'm end 2 yes continue i'm end 3 no continue i'm end