c++ 遍历 lua 表 类型错误 导致 PANIC: unprotected error in call to Lua API (invalid key to ‘next‘)

--- lua
  path_table = { "../lua_test", "../lua_scripts" }

// c++:

        lua_pushnil(L);
        while(lua_next(L, -2))
        {
            int key = lua_tointeger(L, -2); // 这里发生错误时
            const char* value = lua_tostring(L, -1);
            printf("%u => %s\n", key, value);
            lua_pop(L, 1);
        }

当 key 为 int, 但是按照 string 读取 key, lua_tostring(L, -2) 类型错误时, 第一个 key-value 读取成功,第二个时 程序崩溃 

提示:

PANIC: unprotected error in call to Lua API (invalid key to 'next')

要注意类型判断

你可能感兴趣的:(c++,lua)