博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
lua例子(进出栈)
阅读量:5825 次
发布时间:2019-06-18

本文共 1726 字,大约阅读时间需要 5 分钟。

#include 
extern "C"{#include "lua-5.2.2/src/lauxlib.h"#include "lua-5.2.2/src/lualib.h"#include "lua-5.2.2/src/lstate.h"}//lua与c交互栈的索引,假如栈中有5个元素//5 -1//4 -2//3 -3//2 -4//1 -5void stackDump(lua_State* L){ int i = 0; int top = lua_gettop(L);//获取栈中元素的个数,即栈顶元素的索引 for (int i = 0; i < top; i++) { int t = lua_type(L, i);//返回栈中元素的类型 switch (t) { case LUA_TSTRING: printf("%s", lua_tostring(L, i));//从栈中i索引位置取字符串,返回字符串的指针,对于字符串指针不能在函数外部,函数返回后会清理栈 break; case LUA_TBOOLEAN: /* booleans */ printf(lua_toboolean(L, i) ? "true" : "false"); break; case LUA_TNUMBER: /* numbers */ printf("%g", lua_tonumber(L, i)); break; default: /* other values */ printf("%s", lua_typename(L, t));//转换类型码到类型名 break; } printf(" "); } //printf("\n");}int main(){ lua_State* L = luaL_newstate(); lua_pushboolean(L, 1);//向栈中压入bool类型 lua_pushinteger(L, 10);//向栈中压入int类型 lua_pushnil(L); //向栈中压入空值nil lua_pushstring(L, "hello");//压入c风格字符串 stackDump(L); /* true 10 nil `hello' */ lua_pushvalue(L, -4); //压入堆栈上指定索引位置的拷贝到栈顶 stackDump(L); ///* true 10 nil `hello' true */ lua_replace(L, 3); stackDump(L); ///* true 10 true `hello' */ /*Lua_insert移动栈顶元素到指定索引位置*/ lua_settop(L, 6); //设置栈顶,不够补nil,多了删除,lua_settop(L, 0)清空栈 stackDump(L); ///* true 10 true `hello' nil nil */ lua_remove(L, -3);//移除指定索引位置的元素,并将上面的元素下移 stackDump(L); ///* true 10 true nil nil */ lua_settop(L, -5); stackDump(L); /* true */ lua_close(L); getchar(); return 0;}

这个vs不知怎搞的老是出现蛋疼的问题

转载地址:http://oaidx.baihongyu.com/

你可能感兴趣的文章
zabbix 批量web url监控
查看>>
MongoDB CookBook读书笔记之导入导出
查看>>
shell如何快速锁定所有账号
查看>>
HTML 5实现的手机摇一摇
查看>>
Linux 文件IO理解
查看>>
Ninject 2.x细说---2.绑定和作用域
查看>>
30个非常时尚的网页联系表单设计优秀示例
查看>>
使用membership(System.Web.Security)来进行角色与权限管理
查看>>
opticom 语音质量验证白皮书
查看>>
3D实时渲染中的BSP树和多边形剔除
查看>>
Frank Klemm's Dither and Noise Shaping Page: Dither and Noise Shaping In MPC/MP+
查看>>
网络抓包的部署和工具Wireshark【图书节选】
查看>>
Redis在Windows+linux平台下的安装配置
查看>>
Maven入门实战笔记-11节[6]
查看>>
Local declaration of 'content' hides instance variable
查看>>
ASP.NET中 HTML标签总结及使用
查看>>
Linux下日志系统的设计
查看>>
爬虫IP被禁的简单解决方法——切换UserAgent
查看>>
php生成word,并下载
查看>>
紫书 习题8-11 UVa 1615 (区间选点问题)
查看>>