如何查找 lua 堆栈中有多少项(值)

How to find how many items(values) are in lua stack

我正在使用 C++ 中的 lua,我想知道在 lua 堆栈中使用了多少“插槽”(你可以说),如果可能的话,什么是lua 个堆栈的大小?

lua_gettop(lua_State* L)

栈中的元素个数与栈顶槽的索引相同。如果您感兴趣,可以使用此信息为您打印整个堆栈。

int top = lua_gettop(L);

std::string str = "From top to bottom, the lua stack is \n";
for (unsigned index = top; index > 0; index--)
{
    int type = lua_type(L, index);
    switch (type)
    {
        // booleans
        case LUA_TBOOLEAN:
            str = str + (lua_toboolean(L, index) ? "true" : "false") + "\n";
            break;

        // numbers
        case LUA_TNUMBER:
            str = str + std::to_string(lua_tonumber(L, index)) + "\n";
            break;

       // strings
        case LUA_TSTRING:
            str = str + lua_tostring(L, index) + "\n";
            break;

        // other
        default:
            str = str + lua_typename(L, type) + "\n";
            break;
    }
}

str = str + "\n";
std::cout << str;