摘要: private static List removeDuplicate(List list) { HashSet h = new HashSet(list); list.clear(); list.addAll(h); return list; } 阅读全文
posted @ 2019-04-02 14:27 毛会懂 阅读(140) 评论(0) 推荐(0) 编辑