是否有收集到订单保留集的收集器?

时间:2014-12-22 23:17:28

标签: java java-8 collectors

Collectors.toSet()不保留订单。我可以使用Lists代替,但我想表明生成的集合不允许元素重复,这正是Set接口的用途。

1 个答案:

答案 0 :(得分:180)

您可以使用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]
    }
}