Lua有迭代器的概念,通过不同的迭代器,几乎可以遍历所有的东西。标准库提供的几种迭代器:io.lines(迭代文件中的每行), pairs(迭代table元素),ipairs(迭代数组元素), string.gmatch(迭代字符串中单词)等。
另外,可以自定义迭代器
使用pairs迭代器变量table
> t = {2,3,4,5}
> for i,v in pairs(...
分类:
其他好文 时间:
2014-09-21 11:52:00
阅读次数:
170
pairs
Returns three values: the next function, the table t, and nil, so that the
construction
for k,v in pairs(t) do body end
will iterate over all key–value pairs of table t.
See functi...
分类:
其他好文 时间:
2014-07-14 18:39:58
阅读次数:
317
官方描述:ipairs(t)Returns three values: an iterator function, the tablet, and 0, so that the constructionfor i,v inipairs(t) dobodyendwill iterate over th...
分类:
其他好文 时间:
2014-06-23 08:19:14
阅读次数:
309