问题描述
在C中有一个函数是调用lua函数a返回一个表,需要再把结果返回给lua,怎么弄
问题出现的环境背景及自己尝试过哪些方法
实际情况是a函数在A文件,需要在C中检测文件是否存在,脚本是否加载过,然后将结果在B文件中使用。
我尝试了可以在C中通过lua_next把结果取出再通过lua_newtable的方式把结果传出去。
感觉有点绕,应该是有其他结果把在lua栈上的LUA_TTABLE类型直接返回给lua吧
相关代码
// 请把代码文本粘贴到下方(请勿用图片代替代码)
在C中有一个函数是调用lua函数a返回一个表,需要再把结果返回给lua,怎么弄
实际情况是a函数在A文件,需要在C中检测文件是否存在,脚本是否加载过,然后将结果在B文件中使用。
我尝试了可以在C中通过lua_next把结果取出再通过lua_newtable的方式把结果传出去。
感觉有点绕,应该是有其他结果把在lua栈上的LUA_TTABLE类型直接返回给lua吧
// 请把代码文本粘贴到下方(请勿用图片代替代码)
1.1k 阅读
1 回答249 阅读
好像并没有这种方法,目前只能把返回的表做浅拷贝给弹出来,在其他地方找的方法,如下
void shallow_copy(lua_State* L, int index) {
/Create a new table on the stack./
/*Now we need to iterate through the table.
Going to steal the Lua API's example of this.*/
/*Need to duplicate the key, as we need to set it
(one pop) and keep it for lua_next (the next pop). Stack looks like table, k, v.*/
/*Now the stack looks like table, k, v, k.
But now the key is on top. Settable expects the value to be on top. So we
need to do a swaparooney.*/
/*Now the key and value were set in the table, and we popped off, so we have
table, k on the stack- which is just what lua_next wants, as it wants to find
the next key on top. So we're good.*/