依赖
< dependency> < groupId> org.apache.commons</ groupId> < artifactId> commons-collections4</ artifactId> < version> 4.4</ version>
</ dependency>
isEmpty 判断是否为空
CollectionUtils . isEmpty ( null ) : true
CollectionUtils . isEmpty ( new ArrayList ( ) ) : true
CollectionUtils . isEmpty ( { a, b} ) : false
isNotEmpty 判断不为空
CollectionUtils . isNotEmpty ( null ) : false
CollectionUtils . isNotEmpty ( new ArrayList ( ) ) : false
CollectionUtils . isNotEmpty ( { a, b} ) : true
union 并集
String [ ] arrayA = new String [ ] { "A" , "B" , "C" , "D" , "E" , "F" } ;
String [ ] arrayB = new String [ ] { "B" , "D" , "F" , "G" , "H" , "K" } ;
List < String > listA = Arrays . asList ( arrayA) ;
List < String > listB = Arrays . asList ( arrayB) ;
System . out. println ( ArrayUtils . toString ( CollectionUtils . union ( listA, listB) ) ) ;
intersection 交集
String [ ] arrayA = new String [ ] { "A" , "B" , "C" , "D" , "E" , "F" } ;
String [ ] arrayB = new String [ ] { "B" , "D" , "F" , "G" , "H" , "K" } ;
List < String > listA = Arrays . asList ( arrayA) ;
List < String > listB = Arrays . asList ( arrayB) ;
System . out. println ( ArrayUtils . toString ( CollectionUtils . intersection ( listA, listB) ) ) ;
subtract 差集
String [ ] arrayA = new String [ ] { "A" , "B" , "C" , "D" , "E" , "F" } ;
String [ ] arrayB = new String [ ] { "B" , "D" , "F" , "G" , "H" , "K" } ;
List < String > listA = Arrays . asList ( arrayA) ;
List < String > listB = Arrays . asList ( arrayB) ;
System . out. println ( ArrayUtils . toString ( CollectionUtils . subtract ( listA, listB) ) ) ;