从C,如何打印Lua堆栈的内容?

问题描述 投票:3回答:2

我的C程序可能有一个愚蠢的错误。在某些点上,Lua堆栈不包含我认为应该包含的值。

为了调试它,我想在程序的特定位置打印Lua堆栈的内容。如何做到这一点而又不会弄乱堆栈?

c lua lua-api
2个回答
1
投票

此代码从上到下遍历堆栈,并在每个值上调用tostring,打印结果(如果未获得结果,则打印类型名称。)>

assert(lua_checkstack(L, 3));
int top = lua_gettop(L);
int bottom = 1;
lua_getglobal(L, "tostring");
for(int i = top; i >= bottom; i--)
{
    lua_pushvalue(L, -1);
    lua_pushvalue(L, i);
    lua_pcall(L, 1, 1, 0);
    const char *str = lua_tostring(L, -1);
    if (str) {
        printf("%s\n", str);
    }else{
        printf("%s\n", luaL_typename(L, i));
    }
    lua_pop(L, 1);
}
lua_pop(L, 1);

0
投票

此答案是@lhf在评论中提供的答案的略作编辑的版本。

© www.soinside.com 2019 - 2024. All rights reserved.