unpack
Returns the elements from the given table.
你也可以使用
x,y = someList[1],someList[2]
取得相同的效果.但是这种方法不能适用于lua-table的不同长度.
用法
table.unpack (list [,i [,j]])
返回给定表中的元素.此功能相当于
return list[i],list[i+1],···,list[j]
默认情况下,i为1,j为#list.
一个codepad的链接显示出相同的工作.