【Lua】Lua之一 类型与值,表达式

一、类型与值

1、nil(空)====相当于Null

2、boolean(布尔)====true false

3、number(数字)====lua中不分int float,都是number

4、string(字符串)

5、function(函数)

6、table(表)====相当于list dictionary,索引默认从1开始

二、表达式

1、关系操作符

<  >  <=  >=  ==  ~=(不等于)

2、与或非

and  or  not

3、三元运算符

(a>d and a) or b (如果a大于b,返回a,否则返回b)

 

posted @ 2019-07-12 10:28  一只奶喵  阅读(109)  评论(0编辑  收藏  举报