Lua中..和#运算符的使用方法
程序员文章站
2022-06-24 11:52:25
通过lua语言支持其他运算符包括串联和长度。
例子
试试下面的例子就明白了在lua编程语言提供的其他运算符:
复制代码 代码如下:a = "hel...
通过lua语言支持其他运算符包括串联和长度。
例子
试试下面的例子就明白了在lua编程语言提供的其他运算符:
复制代码 代码如下:
a = "hello "
b = "world"
b = "world"
print("concatenation of string a with b is ", a..b )
print("length of b is ",#b )
print("length of b is ",#"test" )
当建立并执行上面的程序它会产生以下结果:
复制代码 代码如下:
concatenation of string a with b is hello world
length of b is 5
length of b is 4
length of b is 5
length of b is 4
上一篇: Lua5.1中加载dll动态链接库的方法