java 怎么把多個list 合並成一個去掉重復的


 


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
     public  static  void  main(String[] args){
         List<Integer> list1 =  new  ArrayList<Integer>();
         list1.add( 1 );
         list1.add( 2 );
         list1.add( 3 );
         list1.add( 4 );
         List<Integer> list2 =  new  ArrayList<Integer>();
         list2.add( 1 );
         list2.add( 4 );
         list2.add( 7 );
         list2.add( 10 );
         List<Integer> listAll =  new  ArrayList<Integer>();
         listAll.addAll(list1);
         listAll.addAll(list2);
         listAll =  new  ArrayList<Integer>( new  LinkedHashSet<>(listAll));
         System.out.println(listAll);
     }

 

輸出:

 

[1, 2, 3, 4, 7, 10]

 

代碼要典:

 

  1. 合並 使用java.util.List.addAll(Collection<? extends Integer>)

  2. 去重,借助LinkedHashSet 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM