共计 714 个字符,预计需要花费 2 分钟才能阅读完成。
Java 中 List 去重的方法有以下几种:
- 使用 Set:将 List 转换为 Set,因为 Set 不允许有重复元素,所以会自动去重。然后再将 Set 转换为 List。
List list = new ArrayList();
// 添加元素到 list 中
Set set = new HashSet(list);
List newList = new ArrayList(set);
- 使用 Java 8 的 stream()方法:使用 stream()方法将 List 转换为 Stream 对象,然后使用 distinct()方法去重,最后使用 collect()方法将 Stream 转换为 List。
List list = new ArrayList();
// 添加元素到 list 中
List newList = list.stream().distinct().collect(Collectors.toList());
- 使用 Apache Commons Collections 库:使用
CollectionUtils.removeDuplicates()
方法去重。
List list = new ArrayList();
// 添加元素到 list 中
List newList = new ArrayList(CollectionUtils.removeDuplicates(list));
- 使用 Java 8 的 HashSet:使用 Java 8 的 HashSet 去重,然后再将 HashSet 转换为 List。
List list = new ArrayList();
// 添加元素到 list 中
List newList = new ArrayList(new HashSet(list));
以上是几种常见的方法,根据具体需求可以选择适合的方法进行去重。
丸趣 TV 网 – 提供最优质的资源集合!
正文完