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

C++对Lua中table进行读取、修改和创建

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

C++代码:

// LuaAndC.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"


#include <iostream>  
#include <string.h>  
using namespace std;  
   
extern "C"  
{  
    #include "lua.h"  
    #include "lauxlib.h"  
    #include "lualib.h"  
}  


int _tmain(int argc, _TCHAR* argv[])
{
	 //1.创建一个state  
    lua_State *L = luaL_newstate();  

	luaL_openlibs(L);
	luaL_dofile(L,"Hello.lua");
	
	//获取table的值
	lua_getglobal(L,"str");

	//会将get的对应项压到栈顶
	lua_getfield(L,1,"name");
	lua_getfield(L,1,"age");

	if(lua_isstring(L,2))
	{
		cout<<"name= "<<lua_tostring(L,-2)<<endl;
	}
	if(lua_isnumber(L,3))
	{
		cout<<"age= "<<lua_tonumber(L,-1)<<endl;
	}
	lua_pop(L,2);

	//修改table的项
	lua_pushfstring(L,"So so");//改完弹出
	lua_setfield(L,1,"name");
	lua_getfield(L,1,"name");
	if(lua_isstring(L,2))
	{
		cout<<"name1= "<<lua_tostring(L,2)<<endl;
	}
	lua_pop(L,2);

	//新建table
	lua_newtable(L); //压栈
	lua_pushnumber(L,11);
	lua_pushstring(L,"New");
	lua_setfield(L,1,"name");
	lua_setfield(L,1,"age");
	lua_getfield(L,1,"name");
	lua_getfield(L,1,"age");
	if(lua_isstring(L,2))
	{
		cout<<"name= "<<lua_tostring(L,2)<<endl;
	}
	if(lua_isnumber(L,3))
	{
		cout<<"age= "<<lua_tonumber(L,3)<<endl;
	}

	lua_pop(L,3);

    //关闭state  
    lua_close(L);  
	
	int i;
	cin>>i;
    return 0 ;  
}


 

Lua代码:

str={name="Hunter",age=18}


 

版权声明:本文为博主原创文章,未经博主允许不得转载。


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
cocos-lua基础学习(八)Layer类学习笔记发布时间:2022-07-22
下一篇:
vim编译安装+lua模块发布时间: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