“PCALL 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

PCALL lua

if pcall(foo) then
      -- no errors while running `foo'
      ...
    else
      -- `foo' raised an error: take appropriate actions
      ...
    end
Combative Caribou

Odpowiedzi podobne do “PCALL lua”

Pytania podobne do “PCALL lua”

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

Przeglądaj inne języki kodu