• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

lua中的pairs和ipairs差别

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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 function next for the caveats of modifying the table during its traversal.


ipairs

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.


实例一

local tabFiles = {"a","b","c",[7]="d",[8]="e"}
for k,v in ipairs(tabFiles) do
        print(k,v)
end

for k,v in pairs(tabFiles) do
        print(k,v)
end


输出结果为:

1       a
2       b
3       c
1       a
2       b
3       c
7       d
8       e


实例二                           

local tabFiles = {"a","b","c",[3]="d",[4]="e"}
for k,v in ipairs(tabFiles) do
        print(k,v)
end

for k,v in pairs(tabFiles) do
        print(k,v)
end

结果为:

1       a
2       b
3       c
4       e
1       a
2       b
3       c
4       e


实例三

local tabFiles = {"a","b","c",[m]="d",[4]="e"}
for k,v in ipairs(tabFiles) do
        print(k,v)
end

for k,v in pairs(tabFiles) do
        print(k,v)
end

输出结果为:

1       a

2       b
3       c
4       e
1       a
2       b
3       c
m       d
4       e


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Redis与LuaScript发布时间:2022-07-22
下一篇:
Lua+win10+vs2017的运行环境和创建cocos2dx3.17的lua项目(亲测)发布时间:2022-07-22
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap