官方描述:
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), (2,t), ···, ...……
在foo.lua文本文件中写入如下代码:
local class={}
function class.foo(a,b)
return a+b
end
return class
在test.lua文件中写入代码如下:
c=require(amp;quot;fooamp;quot;)
print(c.foo(1,2))
require也可由dofi ...……
http://www.cnblogs.com/ly4cn/archive/2006/08/04/467550.html
控制语句
格式
示例
If
if 条件 then ... elseif 条件 then ... else ... end
if 1+1=2 then print(amp;quot;trueamp;quot;)elseif ...……