gpt4 book ai didi

c - 如何应用lua定义

转载 作者:太空宇宙 更新时间:2023-11-04 08:20:44 26 4
gpt4 key购买 nike

我有一个定义如下:

#define namef (s, r, x) (p_name ((s), (r), (x)))

我的lua文件如下:

tbl= {
name_func = module;
};

我的代码如下:

void getname(void) {
lua_State *L = luaL_newstate();
luaL_openlibs(L);
char *arc = "luafun.lua";


if (luaL_dofile(L, arc)) {
printf("Error in %s", arc);
return;
}

lua_getglobal(L, "tbl");
lua_getfield(L, -1, "name_func");
namef(r_name, lua_tostring(L, -1), sizeof(r_name));

lua_close(L);
printf("done");
}

r_name 是一个数组 char r_name [11];

但它给出了以下错误:

PANIC: unprotected error in call to Lua API (attempt to index a nil value)

不知道为什么会出现这种情况,在C中正常工作,多改成lua就出现错误

最佳答案

首先,您发布了很多与问题完全无关的内容。我们不需要查看 p_name 或您的宏或与 Lua 错误无关的任何内容。请参阅:volume is not precision .作为自己解决此问题的一部分,您应该删除无关的东西,直到您拥有重现该问题的最小片段。你会得到这样的结果:

  lua_State *L = luaL_newstate();
if (luaL_dofile(L, lua_filename)) {
return;
}
lua_getglobal(L, "tbl");
lua_getfield(L, -1, "name_func");

问题是找不到您的文件。每the manual , luaL_dofile 返回 true 如果有错误,如果没有错误则返回 false

如果找到该文件,您的程序将中止。只有当文件没有时,它才会尝试索引tbl,但它不能,因为那个全局变量不存在。

关于c - 如何应用lua定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33535299/

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