Collectors.toSet()
不维护秩序。我可以改用 Lists,但我想指出生成的集合不允许元素重复,这正是Set
接口的用途。
问问题
29401 次
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 回答