132

Collectors.toSet()不维护秩序。我可以改用 Lists,但我想指出生成的集合不允许元素重复,这正是Set接口的用途。

4

1 回答 1

232

您可以使用toCollection并提供所需集合的具体实例。例如,如果您想保留广告订单:

Set<MyClass> set = myStream.collect(Collectors.toCollection(LinkedHashSet::new));

例如:

public class Test {    
    public static final void main(String[] args) {
        List<String> list = Arrays.asList("b", "c", "a");

        Set<String> linkedSet = 
            list.stream().collect(Collectors.toCollection(LinkedHashSet::new));

        Set<String> collectorToSet = 
            list.stream().collect(Collectors.toSet());

        System.out.println(linkedSet); //[b, c, a]
        System.out.println(collectorToSet); //[a, b, c]
    }
}
于 2014-12-22T23:25:05.813 回答