Groovy - 收集()


方法collect 迭代集合,使用闭包作为转换器将每个元素转换为新值。

句法

List collect(Closure closure)

参数

闭包表达式。

返回值

修改后的列表集合。

例子

以下是每个方法的此方法的用法示例 -

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