🧐

Lua_多脚本执行

print("**********多脚本执行************") print("**********全局变量和本地变量************") --全局变量 a = 1 b = "123" for i = 1,2 do c = "唐老狮" end print(c) --本地(局部)变量

Decade Published on 2025-03-17

Lua_表的操作

print("**********复杂数据类型——表2************") print("**********字典************") print("**********字典的申明************") --字典是由键值对构成 a = {["name"] = "唐老湿", [

Decade Published on 2025-03-16

Lua_迭代器遍历

print("**********迭代器遍历************") --迭代器遍历 主要是用来遍历表的 --#得到长度 其实并不准确 一般不要用#来遍历表 a = {[0] = 1, 2, [-1]=3, 4, 5, [5] = 6} print("**********ipairs迭代器遍

Decade Published on 2025-03-16

Lua_冒泡排序

function sort(...) a = {...} b = nil for j=1,#a-1 do for i=1,#a-j do if(a[i]>a[i+1]) then b = a[i+1] a[i+1] = a[i] a[i] = b end end end ret

Decade Published on 2025-03-15

Lua_表

print("**********复杂数据类型 talbe************") --所有的复杂类型都是table(表) print("**********数组************") a = {1,2,nil,3,"1231",true,nil} --lua中 索引从1开始 print(

Decade Published on 2025-03-15

Lua_函数

print("**********函数************") --function 函数名() --end --a = function() --end print("**********无参数无返回值************") function F1() print("F1函数") e

Decade Published on 2025-03-15

Lua_循环语句

print("**********循环语句************") print("**********while语句************") num = 0 --while 条件 do ..... end while num < 5 do print(num) num = num +

Decade Published on 2025-03-14

Lua_条件分支

print("**********条件分支语句************") a = 9 --if 条件 then.....end --单分支 if a > 5 then print("123") end --双分支 -- if 条件 then.....else.....end if a < 5

Decade Published on 2025-03-14

Lua_运算符

print("**********运算符************") print("**********算数运算符************") -- + - * / % ^ -- 没有自增自减 ++ -- -- 没有复合运算符 += -= /= *= %= --字符串 可以进行 算数运算符操作 会自

Decade Published on 2025-03-14

Lua_String方法

print("**********字符串************") str = "双引号字符串" str2 = '单引号字符串' --获取字符串的长度 print("**********字符串长度************") s = "aBcdEfG字符串" --一个汉字占3个长度 --英文字符

Decade Published on 2025-03-14
Previous Next