- Commons Collections 教程
- Commons Collections - 首页
- Commons Collections - 概述
- Commons Collections - 环境设置
- Commons Collections - Bag 接口
- Commons Collections - BidiMap 接口
- Commons Collections - MapIterator 接口
- Commons Collections - OrderedMap 接口
- Commons Collections - 忽略空值
- Commons Collections - 合并与排序
- Commons Collections - 对象转换
- Commons Collections - 对象过滤
- Commons Collections - 安全空值检查
- Commons Collections - 包含
- Commons Collections - 交集
- Commons Collections - 差集
- Commons Collections - 并集
- Commons Collections 资源
- Commons Collections - 快速指南
- Commons Collections - 有用资源
- Commons Collections - 讨论
Commons Collections - 对象过滤
Apache Commons Collections 库的 CollectionUtils 类提供了各种实用方法,用于涵盖广泛用例的常见操作。它有助于避免编写样板代码。在 Java 8 的 Stream API 提供类似功能之前,此库非常有用。
filter() 方法
CollectionUtils 的 filter() 方法可用于过滤列表,以移除不满足传递的谓词所提供条件的对象。
声明
以下是
org.apache.commons.collections4.CollectionUtils.filter() 方法的声明:
public static <T> boolean filter(Iterable<T> collection, Predicate<? super T> predicate)
参数
collection − 获取输入的集合,不能为 null。
predicate − 用作过滤器的谓词,可以为 null。
返回值
如果此调用修改了集合,则返回 true,否则返回 false。
示例
以下示例演示了org.apache.commons.collections4.CollectionUtils.filter() 方法的用法。我们将过滤整数列表以仅获取偶数。
import java.util.ArrayList; import java.util.Arrays; import java.util.List; import org.apache.commons.collections4.CollectionUtils; import org.apache.commons.collections4.Predicate; public class CollectionUtilsTester { public static void main(String[] args) { List<Integer> integerList = new ArrayList<Integer>(); integerList.addAll(Arrays.asList(1,2,3,4,5,6,7,8)); System.out.println("Original List: " + integerList); CollectionUtils.filter(integerList, new Predicate<Integer>() { @Override public boolean evaluate(Integer input) { if(input.intValue() % 2 == 0) { return true; } return false; } }); System.out.println("Filtered List (Even numbers): " + integerList); } }
输出
它将产生以下结果:
Original List: [1, 2, 3, 4, 5, 6, 7, 8] Filtered List (Even numbers): [2, 4, 6, 8]
filterInverse() 方法
CollectionUtils 的 filterInverse() 方法可用于过滤列表,以移除满足传递的谓词所提供条件的对象。
声明
以下是
org.apache.commons.collections4.CollectionUtils.filterInverse() 方法:
public static <T> boolean filterInverse(Iterable<T> collection, Predicate<? super T> predicate)
参数
collection − 获取输入的集合,不能为 null。
predicate − 用作过滤器的谓词,可以为 null。
返回值
如果此调用修改了集合,则返回 true,否则返回 false。
示例
以下示例演示了org.apache.commons.collections4.CollectionUtils.filterInverse() 方法的用法。我们将过滤整数列表以仅获取奇数。
import java.util.ArrayList; import java.util.Arrays; import java.util.List; import org.apache.commons.collections4.CollectionUtils; import org.apache.commons.collections4.Predicate; public class CollectionUtilsTester { public static void main(String[] args) { List<Integer> integerList = new ArrayList<Integer>(); integerList.addAll(Arrays.asList(1,2,3,4,5,6,7,8)); System.out.println("Original List: " + integerList); CollectionUtils.filterInverse(integerList, new Predicate<Integer>() { @Override public boolean evaluate(Integer input) { if(input.intValue() % 2 == 0) { return true; } return false; } }); System.out.println("Filtered List (Odd numbers): " + integerList); } }
输出
结果如下所示:
Original List: [1, 2, 3, 4, 5, 6, 7, 8] Filtered List (Odd numbers): [1, 3, 5, 7]