–这是一个lua语句
print("hello lua")
a =
--[[
<html>
<body>
<a> http://www.baidu.com</a>
</body>
</html>
这之间是一个多行注释
]]
print(a)
条件语句
a=2
if a == 12 then
print(a)
else
print("nil")
end
注意
~= --不等于
函数
local function myfun01( ... )
-- body
print("ia function01")
end
myfun01();
local function myfunc02()
-- body
return 1,2;
end
local b,c= myfunc02();
print (b);
print(c);
循环
function pair( ... )
-- body
local mytable = {...}
for k,v in pairs(mytable) do
print(k,v)
end
end
pair(12,"eqw")
–********************************************
– and or not
– and 如果第一个我们要操作的数是假的话,那么我们会返回第一个操作数,否则则返回第二个操作数;
–lua中只有false和nil为假 0也是真;
print (0 and 1)
print(false and 2)
print(1 and 5)
–or 如果我们计算的第一个值时真的时候返回第一个,假的时候返回第二个;
print (1 or 2)
print(false or 3)
–not 返回的只有true 和false
--while
m_table = {1,2,3}
local index = 1;
while m_table[index] do
print(m_table[index])
index = index+1
end
while index<10 do
print (index)
index = index +1
end
--repeat
local s=1
repeat
s = s+1
print (s)
until s==3
–for
for i=0,10,3 do
print(i)
end
–*********************************************
–table
–lua中table的索引1 不是0
–table的访问和其他语言中的数据使用类似
mytable1 = {1,2,3,4}
for i=1,#mytable1 do --#代表时表的长度
print()
end
mytable2 = {1,2,table3={4,5},8}
–***************
s = "ok"
mytable3 = {
k=12
}
mytable3[s]= 12
print(table["k"])
print(table[s])
print(table.k)
--在lua中 table.k等价于table["k"]
-- a.x a[x]
-- a.x 等价于 a["x"]
--a[x] 以变量x的值来索引table
–第一种遍历
for u=1,#table3 do
print("value is==>"..mytable3[i])
end
–第二种 for ipairs 迭代器使用的方式跟我们第一种普通for循环获取的值时一样的;
–都是按照当前的索引 迭代并显示,不包括键值对
for i,v in ipairs(mytable3) do
print(i,v)
end
–第三种 for pairs 全部都是显示,包括键值对
–完全将所有的值显示出来,并且要注意table中的索引并不完全时按照书写顺序来的
for k,v in pairs(mytable3) do
print(k,v)
end
–**********
–lua 在实际的应用中可以作为第三方插件集成到项目中,为我们的项目提供一个支持功能;
–可以完全使用lua进行开发,quick-cocos2dx,coronaSDK
–当作一种数据的配置集(阵列)