gpt4 book ai didi

c++ - Lua 5.2 问题 : 'attempt to call a nil value' from lua_pcall

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:34:45 28 4
gpt4 key购买 nike

我在获取从 C++ 调用的 Lua 5.2 函数时遇到问题。

这是 Lua block (名为 test.lua):

function testFunction ()
print "Hello World"
end

这是 C++:

int iErr = 0;

//Create a lua state
lua_State *lua = luaL_newstate();

// Load io library
luaopen_io (lua);

//load the chunk we want to execute (test.lua)
iErr = luaL_loadfile(lua, "test.lua");
if (iErr == 0) {
printf("successfully loaded test.lua\n");

// Push the function name onto the stack
lua_getglobal(lua, "testFunction");
printf("called lua_getglobal. lua stack height is now %d\n", lua_gettop(lua));

//Call our function
iErr = lua_pcall(lua, 0, 0, 0);
if (iErr != 0) {
printf("Error code %i attempting to call function: '%s'\n", iErr, lua_tostring(lua, -1));
}

} else {
printf("Error loading test.lua. Error code: %s\n", lua_tostring(lua, -1));
}
lua_close (lua);

当我跟踪时,我看到它加载了 test.lua 脚本(没有返回错误),然后它显示在使用函数名称调用 lua_getglobal 后堆栈高度为 3。

但是,它在 lua_pcall 处失败,错误代码为 2:'attempt to call a nil value'。

我已经阅读了大量 Lua 5.2 代码示例,但似乎看不出我哪里出错了。这看起来应该绝对有效(根据我读过的内容)。

我检查了拼写和区分大小写,一切都匹配。

我是不是误会了什么???

最佳答案

luaL_loadfile 只是加载文件,并不运行它。请尝试使用 luaL_dofile

你仍然会得到一个错误,因为 print 是在基础库中定义的,而不是在 io 库中。所以请调用 luaopen_base

关于c++ - Lua 5.2 问题 : 'attempt to call a nil value' from lua_pcall,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20380232/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com