如何使用带有参数的函数的xpcall?

时间:2015-05-08 13:59:34

标签: lua

this website上有一个关于如何在没有参数的函数上使用xpcall的示例。但是我如何在这样的函数上使用xpcall:

function add (a, b)
  return a + b
end

它应该得到返回值。 这是我的尝试(不起作用,我得到:错误,错误处理错误, 无):

function f (a,b)
  return a + b
end

function err (x)
  print ("err called", x)
  return "oh no!"
end

status, err, ret = xpcall (f, 1,2, err)

print (status)
print (err)
print (ret)

2 个答案:

答案 0 :(得分:5)

如果您使用的是Lua 5.1,那么我相信您需要在另一个函数(不带参数)中包含您想要的函数调用,并在调用xpcall时使用它。

local function f (a,b)
  return a + b
end

local function err (x)
  print ("err called", x)
  return "oh no!"
end

local function pcallfun()
    return f(1,2)
end

status, err, ret = xpcall (pcallfun, err)

print (status)
print (err)
print (ret)

在Lua 5.25.3 xpcall现在直接接受函数参数:

  

xpcall (f, msgh [, arg1, ···])

     

此功能类似于pcall,但它设置了新的消息处理程序msgh

所以电话会是:

status, err, ret = xpcall (f, err, 1, 2)

在您的示例代码中。

答案 1 :(得分:1)

function f (a,b)
  return a + b
end

status, ret, err = xpcall (f, debug.traceback, 1,5)

print (status)
print (ret)
print (err)