如何从ArrayList中删除重复元素?我有一个ArrayList<String>,我想从它中删除重复的字符串。我该怎么做?
4 回答
噜噜哒
TA贡献1784条经验 获得超7个赞
Collection
Collection
Set
Set
ArrayList
:
Set<String> set = new HashSet<>(yourList);yourList.clear();yourList.addAll(set);
ArrayList
.
喵喵时光机
TA贡献1846条经验 获得超7个赞
List<String> deduped = list.stream().distinct().collect(Collectors.toList());
添加回答
举报
0/150
提交
取消