LuaJava调用LuaState.pcall(..)时状态码的定义是什么
我正在尝试调用 LuaJava 中的函数。我总是返回 5 作为状态代码。 所以 int ok=LuaState.pcall(1,1,-1);总是返回 5。从命令行调用相同的函数工作正常。返回码5是什么意思?
/**
* error while running the error handler function.
*/
final public static Integer LUA_ERRERR = new Integer(5);
查看 LuaState.java
I am trying to call a function in LuaJava. I am always getting back 5 as the status code.
So int ok=LuaState.pcall(1,1,-1); always returns 5. calling the same function from the command line works fine. What is the meaning of 5 as a return code?
/**
* error while running the error handler function.
*/
final public static Integer LUA_ERRERR = new Integer(5);
Looking at LuaState.java
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论