首页 > 代码库 > lua学习例子
lua学习例子
extern "C"{#include <lua.h>#include <lauxlib.h>#include <lualib.h>}#include <stdarg.h>#include <stdio.h>#include <stdlib.h>#pragma comment(lib,"lua.lib") void error(lua_State* L, const char* fmt, ...){ va_list argp; va_start(argp, fmt); vfprintf(stderr, fmt, argp); va_end(argp); lua_close(L); exit(EXIT_FAILURE);}void load(char* filename, int* width, int* height){ lua_State* L = luaL_newstate(); luaopen_base(L); luaopen_io(L); luaopen_string(L); luaopen_math(L); if (luaL_loadfile(L, filename) || lua_pcall(L, 0, 0, 0)) error(L, "cannot run configuration file:%s", lua_tostring(L, -1)); lua_getglobal(L, "width");//每次调用将相应变量压入栈顶 lua_getglobal(L, "height"); if (!lua_isnumber(L, -2))//lua_isnumber函数判断每个值是否为数字 error(L, "width should be a number"); if (!lua_isnumber(L, -1)) error(L, "height should be a number"); *width = (int)lua_tonumber(L, -2);//lua_tonumber函数将得到的数值转换成double类型并用(int)强制转换成整型 *height = (int)lua_tonumber(L, -1); lua_close(L);}int main(){ int width = 0; int height = 0; load("pp.lua", &width, &height); return 0;}
lua学习例子
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。