• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

lua例子

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
//顶 -1 -2 -3
//顶 3  2  1

#include <stdio.h>
#include <string.h>
extern "C"{
    #include <lua.h>
    #include <lauxlib.h>
    #include <lualib.h>
}
#pragma comment(lib,"lua.lib") 

void stackDump(lua_State* L)
{
    int i;
    int top = lua_gettop(L); //lua_gettop返回堆栈中的元素个数
    for ( i = 1; i < top; i++)
    {
        int t = lua_type(L, i);//返回栈中元素的类型
        switch (t)
        {
        case LUA_TSTRING:
            printf("%s", lua_tostring(L, i));
            break;
        case LUA_TBOOLEAN:
            printf(lua_toboolean(L, i) ? "true":"false");
            break;
        case LUA_TNUMBER:
            printf("%g", lua_tonumber(L, i));
            break;
        default:
            printf("%s", lua_typename(L, t));
            break;
        }
    }
}

int main()
{
    lua_State* L = luaL_newstate();
    lua_pushboolean(L, 1);//true
    lua_pushnumber(L, 10);// true 10
    lua_pushnil(L);// true 10 nil
    lua_pushstring(L, "HELLO");//true 10 nil HELLO 
    stackDump(L);

    lua_pushvalue(L, -4);//true 10 nil HELLO true
    stackDump(L);

    //lua_replace从栈顶弹出元素值并将其设置到指定索引位置
    lua_replace(L, 3); //true 10 true  HELLO 
    stackDump(L);

    lua_settop(L, 6);//true 10 true  HELLO nil nil   lua_settop设置栈顶(也就是堆栈中的元素个数)为一个指定的值
    stackDump(L);

    lua_remove(L, -3);//true 10 true nil nil       lua_remove移除指定索引位置的元素
    stackDump(L);

    lua_settop(L, -5);//true
    stackDump(L);

    lua_close(L);

    return 0;
}

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Lua在windows下的安装发布时间:2022-07-22
下一篇:
【Cocos2dx 3.3 Lua】导出Cocos2dx API文档发布时间:2022-07-22
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap