lua的栈

来源:互联网 发布:Linux xmonad 编辑:程序博客网 时间:2024/06/06 18:35
lua的栈是从栈底到栈顶:


lua_pushstring(L, "test1");
lua_pushstring(L, "test2");
lua_pushstring(L, "test3");
lua_pushstring(L, "test4");


栈如下:


原创粉丝点击