Lua 是一个小巧的脚本语言。是巴西里约热内卢天主教大学(Pontifical Catholic University of Rio de Janeiro)里的一个研究小组,由Roberto Ierusalimschy、Waldemar Celes 和 Luiz Henrique de Figueiredo所组成 ...……
Original link: http://sunxiunan.com/?p=1498
You could download the project from http://groups.google.com/group/lua5/web/luautil.rar
At first, create a windows dll application. The IDE I used is……
泛型遍历无法保证顺序,如
a={
=1,
=true,
=20,
=30,
}
for k,v in pairs(a) do
print(k,v)
end
ipairs只遍历数组:
a={
=1,
=true,
=20,
=30,
}
for k,v in ipairs(a) do
print(k,v)end……