for (int i = 1; i <= 3; ++i) lua_pushnumber(i); 栈中元素:(从下往上) 1 2 3 lua_pushvalue(L, 2) 栈中元素:(从下往上) 1 2 3 2 void ...
確定! 回上一頁