前端之家收集整理的这篇文章主要介绍了
动态 – 如何从C中知道一个Lua函数的返回值计数?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
luaL_loadstring(L,"return 3,4,5");
int R = lua_pcall(L,3,0);
Lua可以返回多个值.但是目前我必须硬编码返回值的计数.我可以在运行时动态地知道计数吗?
是.
int top = lua_gettop(L);
luaL_loadstring(L,5");
int R = lua_pcall(L,LUA_MULTRET,0);
int nresults = lua_gettop(L) - top;
您使用LUA_MULTRET,然后使用lua_gettop找出在调用之前和之后堆栈的顶部.
原文链接:https://www.f2er.com/c/116581.html