|
楼主 |
发表于 2011-9-16 21:30:35
|
显示全部楼层
以下是lua5.1中文手册中查到的
ipairs (t)
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.
See next for the caveats of modifying the table during its traversal
----------------------
英文啊
下面是我自己的翻译:
ipairs (t)
返回3个值:一个XX(不会翻译)函数,一个table,一个0,以及建设?
for i,v in ipairs(t) do body end
将会重复pairs (1,t[1]), (2,t[2]), ···, (paris是啥?)直到第一个整数从table中不存在?
看不懂着。。。
我结合
这个代码
for k,v in ipairs(GetTriggerList()) do
EnableTrigger(v,true)
end
估计意思是完成全部的内容吧
但是还是不理解k v是啥东西
看不懂。。。 |
|