Lua table转C++数组

为了方便,这里数组用vector表示。

C++层代码如下:

static int LuaTable2Vector(lua_State *luaState)
{
	int count = luaL_getn(luaState, 1);
	std::vector<std::string> vecNameList;

	for (int i = 0; i < count; i++)
	{
		lua_rawgeti(luaState, 1, i+1);
		const char *strName = lua_tostring(luaState, -1);
		vecNameList.push_back(strName);

		lua_pop(luaState,1);
	}

	std::vector<std::string>::iterator it;
	for (it = vecNameList.begin(); it != vecNameList.end(); it++)
	{
		cout << (*it).data() << endl;
	}

	return 0;
}

简单解释一下上面的程序,lua_rawgeti(lua_state *L, int index, int key)涉及到两个索引,index表示table在栈中的位置,key表示元素在table中的位置。其等价操作为:

ele = Stack[index]

value = ele[key]

Stack.push(value)

栈+1, 栈顶新增元素就是value。正因为增加了栈顶元素,所以后面可以利用lua_tostring(luaState, -1)取到值,并且最后需要调用lua_pop(luaState,1)将元素弹出栈。

lua层调用代码很简单,就两行:

local nameTable = {"zhangsan", "lisi", "wangwu", "liubei", "guanyu"}
LuaTable2Vector(nameTable)

Lua table转C++数组

时间: 2024-10-11 21:09:44

Lua table转C++数组的相关文章

从实现求差集介绍lua table需要注意的一些问题

用lua实现的求两个table的差集(只支持一维table) 1.lua table 判空: table 判空,用的了next()函数. next()函数说明:运行程序来遍历表中的所有域. 第一个参数是要遍历的表,第二个参数是表中的某个键. next 返回该键的下一个键及其关联的值. 如果用 nil 作为 第二个参数调用 next 将返回初始键及其关联值. 当以最后一个键去调用,或是以 nil 调用一张空表时, next 返回 nil. 如果不提供第二个参数,将认为它就是 nil. 可以用 ne

lua table integer index 特性

table.maxn (table) Returns the largest positive numerical index of the given table, or zero if the table has no positive numerical indices. (To do its job this function does a linear traversal of the whole table.) 返回表中最大的正数值index. 说明: 1. 此接口不是统计表中元素的

Lua table pair和ipair区别

官方描述: ipairs (t) Returns three values: an iterator function, the table t, and 0, so that the construction for i,v in ipairs(t) do body end will iterate over the pairs (1,t[1]), (2,t[2]), ···, up to the first integer key absent from the table. pairs (

Lua table 的长度问题

直入主题 我们要取lua table的长度时习惯这样 local tb = {1,2,3,4} print(#tb) 这时候,输出理所当然的是4,如果在程序中我们需要判断长度时使用这样的方法,再看一下 tb[1] = nil print(#tb) 输出还是4,似乎有点背离我们的意愿 我们想知道这个table里面是不是有4个值,但是有一个值被置空了,输出结果却没有及时告诉我们 发生这样问题的原因是,lua在初始化table的时候,会给这个table分配值存储的空间,代码里面tb初始化包含4个数字值

树形打印lua table表

local print = print local tconcat = table.concat local tinsert = table.insert local srep = string.rep local type = type local pairs = pairs local tostring = tostring local next = next function print_lua_table (lua_table, indent) if not lua_table or t

(转) 关于lua table是否为空的判断

在项目的脚本lua中经常有这样的需求, 1.local a = {} 2.对a进行处理 3.对a是否为空表进行判断 关于对a是否为空表的判断,我发现有些代码如此做: if a == {} then 这样的结果就是a == {}永远返回false,是一个逻辑错误.因为这里比较的是table a和一个匿名table的内存地址. 也有些代码如此做: if table.maxn(a) == 0 then 这样做也不保险,除非table的key都是数字,而没有hash部分. 难道真的要遍历table发现有

Lua Table pairs输出顺序问题 (版本差异 解决数字索引间断并兼容字符串索引)

问题标签: Lua Table 迭代器;Lua Table 输出顺序; Lua Table 顺序输出;Lua Table 数字索引 字符串索引;Lua Table pairs; 问题背景: 使用pairs输出table时,其输出顺序与通常认知不相符. 例如使用pairs输出如下table T = { [1] = "1", [2] = "1", [3] = "1", [4] = "1", [5] = "1",

LUA table.sort的问题,数组与表的区别

t = { [1] = 222, [2] = 23, [3] = 2433, [4] = 135, } t1 = { 222, 23, 2433, 135, } t2 = { 'a', 'b','d','c', } function cmp(v1, v2) return v1.key < v2.key end --table.sort(t) --对它排序出错,它是key-value表 for k, v in pairs(t) do--使用pairs对它输出,顺序不定 --使用ipairs对它输出

lua学习笔记---表(数组)

这里的表可以看成一个数据类型,与C语言中的数组有的一拼. 但是相对于C语言的数组来说比较灵活,它的下标和元素都很随意,下标不限于整型(0,1,2,3-),元素也可能不是一直的一个数据类型,它的元素其中也能是整型,浮点型等. 形式 1> 先创建一个空表:然后初始化表 Lua 5.1.4 Copyright (C) 1994-2008 Lua.org, PUC-Rio > T = {} > T[0] = 0 > T[1] = 1 > for i = 0,1,1 do print(