/** * 去重list中的重复元素 * @param list * @return */ public static <T> List<T> removeRepeat(List<T> list){ Set<T> set = new HashSet<>(list); list.clear(); list.addAll(set); return list; }
/** * 去重list中的重复元素 * @param list * @return */ public static <T> List<T> removeRepeat(List<T> list){ Set<T> set = new HashSet<>(list); list.clear(); list.addAll(set); return list; }