Groovy - collect()



collect()方法使用闭包作为转换器,遍历集合,将每个元素转换成新值。

语法

List collect(Closure closure)

参数

闭包表达式。

返回值

修改后的列表集合。

示例

以下是使用 every 方法的示例 −

class Example {
   static void main(String[] args) {
      def lst = [1,2,3,4];
      def newlst = [];
      newlst = lst.collect {element -> return element * element}
      println(newlst);
   } 
}

运行以上程序,得到以下结果 −

[1, 4, 9, 16] 
groovy_closures.htm
广告