我是靠谱客的博主 凶狠花生,最近开发中收集的这篇文章主要介绍 集合操作工具类CollectionUtils ,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

使用CollectionUtils中四个方法之一执行集合操作.这四种分别是union(),intersection();disjunction(); subtract();
下列例子就是演示了如何使用上述四个方法处理两个Collection;
例子:使用:CollectionUtils union(),intersection();disjunction(); subtract();
注: 这些方法都是数学的集合算法

Java代码   收藏代码
  1. import java.util.*;  
  2. String[] arrayA = new String[] { "1""2""3""3""4""5" };  
  3. String[] arrayB = new String[] { "3""4""4""5""6""7" };  
  4.   
  5. List a = Arrays.asList( arrayA );  
  6. List b = Arrays.asList( arrayB );  
  7.   
  8. Collection union = CollectionUtils.union( a, b );  //并集  
  9. Collection intersection = CollectionUtils.intersection( a, b ); //交集  
  10. Collection disjunction = CollectionUtils.disjunction( a, b ); //析取  
  11. Collection subtract = CollectionUtils.subtract( a, b ); //差集  
  12.   
  13. Collections.sort( union );  
  14. Collections.sort( intersection );  
  15. Collections.sort( disjunction );  
  16. Collections.sort( subtract );  
  17.   
  18.   
  19. System.out.println( "A: " + ArrayUtils.toString( a.toArray( ) ) );  
  20. System.out.println( "B: " + ArrayUtils.toString( b.toArray( ) ) );  
  21. System.out.println( "Union: " + ArrayUtils.toString( union.toArray( ) ) );  
  22. System.out.println( "Intersection: " +  
  23. ArrayUtils.toString( intersection.toArray( ) ) );  
  24. System.out.println( "Disjunction: " +  
  25. ArrayUtils.toString( disjunction.toArray( ) ) );  
  26. System.out.println( "Subtract: " + ArrayUtils.toString( subtract.toArray( ) ) );  



The previous example performs these four operations on two List objects, a and b, printing the results with ArrayUtils.toString( ):

结果:
A: {1,2,2,2,3,3,4,5}
B: {3,4,4,5,6,7}
Union: {1,2,2,2,3,3,4,4,5,6,7}
Intersection: {3,4,5}
Disjunction: {1,2,2,2,3,4,6,7}
Subtract: {1,2,2,2,3}

最后

以上就是凶狠花生为你收集整理的 集合操作工具类CollectionUtils 的全部内容,希望文章能够帮你解决 集合操作工具类CollectionUtils 所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(34)

评论列表共有 0 条评论

立即
投稿
返回
顶部