3

我正在尝试使用 Set Interface 从我的 String 类型的 List 对象中删除重复项,但我面临的问题是它还会重新排序我的列表,这是我不想要的。我想保留列表的顺序并仅删除重复项?

static List<String>  StopNames = new ArrayList<String>();

StopNames.add(sCurrentLine);

Set<String> set = new HashSet<String>(StopNames);


for (String string : set) {

 System.out.println("Printing Set "+string);

}
4

1 回答 1

8

只需切换HashSetfor LinkedHashSet,它会在删除重复项的同时保留插入顺序。

于 2014-02-20T03:15:26.807 回答