1. 程式人生 > >LUA 異常丟擲與捕獲

LUA 異常丟擲與捕獲

--1、使用pcall
local ok ,e = pcall(function()
   error{5} 
end)
if not ok then
    print(unpack(e))
end

--2、使用xpcall
xpcall(function()
    error(5,0)
end,
function(e)
    print(e)
end)

--阻止控制檯關閉
os.execute 'pause'