Groovy - findAll()


它查找接收对象中与关闭条件匹配的所有值。

句法

List findAll(Closure closure)

参数

集合元素要满足的条件在闭包中指定,该条件必须是某个布尔表达式。

返回值

find 方法返回根据表达式找到的所有值的列表。

例子

以下是此方法的使用示例 -

class Example {
   static void main(String[] args) {
      def lst = [1,2,3,4];
      def value;
		
      value = lst.findAll{element -> element > 2}
      value.each {println it}
   } 
}

当我们运行上面的程序时,我们将得到以下结果 -

3 
4 
groovy_closures.htm