Lua语法学习笔记

这篇博客详细介绍了Lua语言的基本语法,包括注释符、nil的使用、Number类型、局部变量的声明、不等于运算符、循环结构如while、repeat和for,以及函数的定义与返回值。此外,还讲解了assert函数的使用,数学运算如math.floor、math.random等,字符串操作如tostring、string.sub以及table数据结构的操作如table.getn和table.sort。博客内容还涉及了I/O基础。
摘要由CSDN通过智能技术生成
  1. 注释符–
  2. nil 表示变量还没有赋值。如果给一个变量赋值为nil,表示删除该变量。
  3. Number:Lua中数字只有双精度类型,不区分浮点和整型。
  4. 局部变量用local声明,Lua默认变量是全局的。
  5. 不等于~=
  6. while和repeat

    indx = 1
    while indx < 10 do
        indx = indx + 1
    end
    
    repeat
        indx = indx + 1
    until indx > 10
  7. for语句:Lua中的for语句循环次数在第一次就确定了,后面不改变

    for indx = 1,10 do
        print(indx)
    end
    
    for indx = 1,10,-1 do
        print(indx)
    end
  8. 函数

    function SetName(myString)
    
    end
    
    function SetName(...)
        if arg.n >0 then
            for indx = 1,arg.n do
            local myString = string.format("%s%d","Argument ",indx,":")
            end
        else
            print(myString,arg[indx]);
        end
    end
    
    function Multiply(val1,val2,...)
        local myString
        if arg.n == 0 then
            myString = string.format("%d%s%d%s%d",val1,"*",val2,"=",val1*val2)
        else
            
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值