“błąd połowowania lua” Kod odpowiedzi

Spróbuj oprócz Lua

require "try-catch"

try {
   function()
      error('oops')
   end,

   catch {
      function(error)
         print('caught error: ' .. error)
      end
   }
}
Naughty Nightingale

błąd połowowania lua

-- The pcall (f, arg1, ...) function calls the requested function in
-- protected mode. If some error occurs in function f, it does not throw
-- an error. It just returns the status of error. A simple example using
-- pcall is shown below.

Live Demo
function myfunction ()
   n = n/nil
end

if pcall(myfunction) then
   print("Success")
else
	print("Failure")
end
Ugliest Unicorn

Odpowiedzi podobne do “błąd połowowania lua”

Pytania podobne do “błąd połowowania lua”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu