码迷,mamicode.com
首页 > 其他好文 > 详细

两种方法删除ArrayList里反复元素

时间:2019-05-26 09:33:46      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:for   html   lis   div   temp   post   template   styles   pid   

方法一:

/** List order not maintained **/

  public static void removeDuplicate(ArrayList arlList)
  {
   HashSet h = new HashSet(arlList);
   arlList.clear();
   arlList.addAll(h);
  }

方法二:


/** List order maintained **/

public static void removeDuplicateWithOrder(ArrayList arlList)
 {
 Set set = new HashSet();
 List newList = new ArrayList();
 for (Iterator iter = arlList.iterator();    iter.hasNext(); ) {
 Object element = iter.next();
   if (set.add(element))
      newList.add(element);
    }
    arlList.clear();
    arlList.addAll(newList);
}


两种方法删除ArrayList里反复元素

标签:for   html   lis   div   temp   post   template   styles   pid   

原文地址:https://www.cnblogs.com/ldxsuanfa/p/10925017.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
分享档案
周排行
mamicode.com排行更多图片
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!