lua学习之pairs与ipairs

参考:https://blog.csdn.net/ai_little_ai/article/details/80487202

目录

ipairs

pairs


ipairs

只能遍历key为整数的值,且遇到nil就退出

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.

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.

猜你喜欢

转载自blog.csdn.net/u010918487/article/details/88869859
今日推荐