依赖:commons-collections4
包:org.apache.commons.collections.CollectionUtils;
常用判空函数
CollectionUtils.isEmpty()
CollectionUtils.isNotEmpty(Collection <?> coll)
其他函数
/** 1、除非元素为null,否则向集合添加元素 */
CollectionUtils.addIgnoreNull(personList,null)
/** 2、将两个已排序的集合a和b合并为一个已排序的列表,以便保留元素的自然顺序 */
CollectionUtils.collate(Iterable<? extends O> a, Iterable<? extends O> b)
/** 3、将两个已排序的集合a和b合并到一个已排序的列表中,以便保留根据Comparator c的元素顺序。 */
CollectionUtils.collate(Iterable<? extends O> a, Iterable<? extends O> b, Comparator<? super O> c)
/** 4、返回该个集合中是否含有至少有一个元素 */
CollectionUtils.containsAny(Collection<?> coll1, T… coll2)
/** 5、如果参数是null,则返回不可变的空集合,否则返回参数本身。(很实用 ,最终返回List EMPTY_LIST = new EmptyList<>()) */
CollectionUtils.emptyIfNull(Collection collection)
/** 6、空安全检查指定的集合是否为空 */
CollectionUtils.isEmpty(Collection <?> coll)
/** 7、 空安全检查指定的集合是否为空。 */
CollectionUtils.isNotEmpty(Collection <?> coll)
/** 8、反转给定数组的顺序。 */
CollectionUtils.reverseArray(Object[] array)
/** 9、差集 */
CollectionUtils.subtract(Iterable<? extends O> a, Iterable<? extends O> b)
/** 10、并集 */
CollectionUtils.union(Iterable<? extends O> a, Iterable<? extends O> b)
/** 11、交集 */
CollectionUtils.intersection(Collection a, Collection b)
/** 12、 交集的补集(析取) */
CollectionUtils.disjunction(Collection a, Collection b)
对象集合交、并、差处理
List personList = Lists.newArrayList();
Person person1 = new Person(“小小”, 15);
Person person2 = new Person(“中中”, 16);
personList.add(person1);
personList.add(person2);
List person1List = Lists.newArrayList();
Person person3 = new Person(“中中”, 16);
Person person4 = new Person(“大大”, 17);
person1List.add(person3);
person1List.add(person4);
/** 1、差集 */
System.out.println(CollectionUtils.subtract(personList,person1List));
//输出:[Person{name=‘小小’, age=15}]
/** 2、交集 */
System.out.println(CollectionUtils.intersection(personList,person1List));
//输出:[Person{name=‘中中’, age=16}]
/** 3、并集 */
System.out.println(CollectionUtils.union(personList,person1List));
//输出:[Person{name=‘小小’, age=15}, Person{name=‘大大’, age=17}, Person{name=‘中中’, age=16}]
/** 4、交集的补集(析取) */
System.out.println(CollectionUtils.disjunction(personList,person1List));
//输出:[Person{name=‘小小’, age=15}, Person{name=‘大大’, age=17}]