刪除List中重複元素

1.方法一: 

Java代码   收藏代码
  1. /** List order not maintained **/  
  2.   
  3.   public static void removeDuplicate(ArrayList arlList)  
  4.   {  
  5.    HashSet h = new HashSet(arlList);  
  6.    arlList.clear();  
  7.    arlList.addAll(h);  
  8.   }  

2.方法二: 
Java代码   收藏代码
  1. /** List order maintained **/  
  2.   
  3. public static void removeDuplicateWithOrder(ArrayList arlList)  
  4.  {  
  5.  Set set = new HashSet();  
  6.  List newList = new ArrayList();  
  7.  for (Iterator iter = arlList.iterator();    iter.hasNext(); ) {  
  8.  Object element = iter.next();  
  9.    if (set.add(element))  
  10.       newList.add(element);  
  11.     }  
  12.     arlList.clear();  
  13.     arlList.addAll(newList);  
  14. }

你可能感兴趣的:(list)