博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
#在lua中的运用
阅读量:6239 次
发布时间:2019-06-22

本文共 556 字,大约阅读时间需要 1 分钟。

在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

 

例子二,对多维表的计算:

th> tags={

{1,2,3},{3,4,4}}
th> #tags
2

 

例子三,

th> tags={
1,2,3} [0.0001s]th> tags[#tags+1]=4 [0.0001s]th> tags{ 1 : 1 2 : 2 3 : 3 4 : 4}

 

转载地址:http://hgbia.baihongyu.com/

你可能感兴趣的文章
18校招借鉴
查看>>
JAVA第三次作业
查看>>
2017ICPC北京 J:Pangu and Stones
查看>>
Pandas 数据清洗保存
查看>>
SpringBoot + nodeJS + zookeeper 搭建微服务示例
查看>>
《互联网时代》第二集·浪潮
查看>>
8.10 exec函数
查看>>
Shell命令-文件及内容处理之sort、uniq
查看>>
Android 之文件夹排序
查看>>
Java Assert 用法简介
查看>>
关于redo size(一)
查看>>
We Know What @You #Tag: Does the Dual Role Affect Hashtag Adoption-20160520
查看>>
(转)Eclipse新增安卓虚拟机
查看>>
SpringMvc访问Controller去掉do
查看>>
PHPnow升级PHP 5.4与Mysql 5.5
查看>>
正则表达式验证邮箱格式
查看>>
如何围绕企业战略,建设BI驾驶舱?
查看>>
java多线程stop,suspend使用代码实际例子
查看>>
中小型研发团队架构实践三:微服务架构(MSA)
查看>>
Windows动态库学习心得
查看>>