码迷,mamicode.com
首页 >  
搜索关键字:ipairs    ( 43个结果
Lua iterator 迭代器
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
lua中的pairs和ipairs区别
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
Lua table pair和ipair区别
官方描述: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
43条   上一页 1 ... 3 4 5
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!