微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Groovy Tip 5:数组

一、数组的定义及赋初值

在Groovy语言中,数组的定义和Java语言中一样。

def a = new String[4]
  
  def nums = newint[10]
  
def bjs = new Object[3]

然后赋值也一样:

a[0] = 'a'
  a[1] = 'b'
  a[2] = 'c'
a[3] = 'd'

所不同的在于在数组定义的时候赋初值。

在Java语言里,对一个字符串数组这样定义:

String[] strs = new String[]{'a','b','c','d'};

而在Groovy语言中,对一个字符串数组则需要这样定义:

def strs = ['a','d'] as String[]

二、数组的遍历

在Groovy语言中,对数组的遍历方法很多,常用的是使用each方法

a.each{
    println it
}

当然,你也可以使用增强for循环:

for(it in a)
  {
    println it
}

你还可以使用如下的遍历方式:

(0..<a.length).each{
     println a[it]
}

三、数组和List之间的转化

List对象转化成数组对象非常简单:

List list = ['a','d']
  def strs = list as String[]
println strs[0]

绝对没有Java语言那么复杂:

List list = new ArrayList();
    list.add("1");
    String[] strs = (String[])list.toArray(new String[0]);
  System.out.println(strs[0]);

而从数组转化成List对象也非常简单:

ottom:0px; padding-top:0px; padding-bottom:10px; color:rgb(51,'d'] as String[]
  
  List list = strs.toList()
println list.get(0)

你也可以这样转化:

ottom:0px; padding-top:0px; padding-bottom:10px; color:rgb(51,'d'] as String[]
  List list = strs as List
println list.get(0)

而在Java语言中,你需要这样转化:

List list = Arrays.asList(strs)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐