码迷,mamicode.com
首页 > 其他好文 > 详细

lua中for循环的四种遍历方式

时间:2014-12-04 19:33:02      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:blog   http   sp   for   div   问题   log   bs   as   

lua中for的四种遍历方式区别
table.maxn 取最大的整数key
#table 从1开始的顺序整数最大值,如1,2,3,6 #table == 3
 
key,value
pairs 取每一个键值对
ipairs 取从key==1开始的顺序整数最大值,每个键值对
 
参考http://rangercyh.blog.51cto.com/1444712/1032925
不过有一个问题,
  1. tbtest = {  
  2. [1] = 1,  
  3. [2] = 2,  
  4. [4] = 4,  
  5. }  
  6. print(#(tbtest)) 
 
 
我的结果是4,按照博客理应为2才对,需要注意此处

lua中for循环的四种遍历方式

标签:blog   http   sp   for   div   问题   log   bs   as   

原文地址:http://www.cnblogs.com/qooweds/p/4143474.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!