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

#在lua中的运用

时间:2016-12-08 20:47:17      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:tags   维表   ring   cat   string   test   nat   code   color   

在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
}

 

#在lua中的运用

标签:tags   维表   ring   cat   string   test   nat   code   color   

原文地址:http://www.cnblogs.com/ymjyqsx/p/6146185.html

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