有一个collections家收集到一个保留订单吗?

Collectors.toSet()不保留顺序。 我可以使用列表来代替,但是我想指出所得到的集合不允许元素重复,这正是Set接口的用途。

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