lua_settablevoid lua_settable (lua_State *L, int index);
等价于t[k] = v的操作, 这里t是一个给定有效索引index处的值, v指栈顶的值,而k是栈顶之下的那个值。
这个函数会
2020-12-05