在C中能不能直接把LUA_TTABLE的值返回给lua

新手上路,请多包涵

问题描述

在C中有一个函数是调用lua函数a返回一个表,需要再把结果返回给lua,怎么弄

问题出现的环境背景及自己尝试过哪些方法

实际情况是a函数在A文件,需要在C中检测文件是否存在,脚本是否加载过,然后将结果在B文件中使用。
我尝试了可以在C中通过lua_next把结果取出再通过lua_newtable的方式把结果传出去。
感觉有点绕,应该是有其他结果把在lua栈上的LUA_TTABLE类型直接返回给lua吧

相关代码

// 请把代码文本粘贴到下方(请勿用图片代替代码)

你期待的结果是什么?实际看到的错误信息又是什么?

阅读 2.5k
1 个回答
新手上路,请多包涵

好像并没有这种方法,目前只能把返回的表做浅拷贝给弹出来,在其他地方找的方法,如下
void shallow_copy(lua_State* L, int index) {

/Create a new table on the stack./

    lua_newtable(L);

/*Now we need to iterate through the table.
Going to steal the Lua API's example of this.*/

    lua_pushnil(L);
    while(lua_next(L, index) != 0) {

/*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.*/

        lua_pushvalue(L, -2);

/*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.*/

        lua_insert(L, -2);

/*Now we just set them. Stack looks like table,k,k,v, so the table is at -4*/



lua_settable(L, -4);

/*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.*/

    }
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进