码迷,mamicode.com
首页 > 其他好文 > 详细

Lua中..和#运算符的使用方法

时间:2016-03-29 12:57:02      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

Lua中..和#运算符的使用方法

技术分享

例子

试试下面的例子就明白了在Lua编程语言提供的其他运算符:

a = "Hello "
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


Lua中..和#运算符的使用方法

标签:

原文地址:http://blog.csdn.net/heyuchang666/article/details/51003410

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!