我有一个ArrayList<String>,我想从中删除重复的字符串。我怎样才能做到这一点?
ArrayList<String>
如果您不想在 a 中重复Collection,您应该考虑为什么要使用Collection允许重复的 a。删除重复元素的最简单方法是将内容添加到 a Set(不允许重复),然后将Set后面添加到ArrayList:
Collection
Set
ArrayList
Set<String> set = new HashSet<>(yourList); yourList.clear(); yourList.addAll(set);
当然,这会破坏ArrayList.