html5中文学习网

您的位置: 首页 > 网站及特效实例 > jquery特效 » 正文

Lua中..和#运算符的使用方法_编程语言综合

[ ] 已经帮助:人解决问题

   这篇文章主要介绍了Lua中..和#运算符的使用方法,是Lua入门学习中的基础知识,需要的朋友可以参考下ShBHTML5中文学习网 - HTML5先行者学习网

  通过Lua语言支持其他运算符包括串联和长度。ShBHTML5中文学习网 - HTML5先行者学习网

201552895552401.jpg (624×208)

  例子ShBHTML5中文学习网 - HTML5先行者学习网

  试试下面的例子就明白了在Lua编程语言提供的其他运算符:ShBHTML5中文学习网 - HTML5先行者学习网

  代码如下:ShBHTML5中文学习网 - HTML5先行者学习网

  a = "Hello "ShBHTML5中文学习网 - HTML5先行者学习网

  b = "World"ShBHTML5中文学习网 - HTML5先行者学习网

  print("Concatenation of string a with b is ", a..b )ShBHTML5中文学习网 - HTML5先行者学习网

  print("Length of b is ",#b )ShBHTML5中文学习网 - HTML5先行者学习网

  print("Length of b is ",#"Test" )ShBHTML5中文学习网 - HTML5先行者学习网

  当建立并执行上面的程序它会产生以下结果:ShBHTML5中文学习网 - HTML5先行者学习网

   代码如下:ShBHTML5中文学习网 - HTML5先行者学习网

  Concatenation of string a with b is Hello WorldShBHTML5中文学习网 - HTML5先行者学习网

  Length of b is 5ShBHTML5中文学习网 - HTML5先行者学习网

  Length of b is 4ShBHTML5中文学习网 - HTML5先行者学习网

(责任编辑:)
推荐书籍
推荐资讯
关于HTML5先行者 - 联系我们 - 广告服务 - 友情链接 - 网站地图 - 版权声明 - 人才招聘 - 帮助