What is the default Set/List implementation with Collectors in Java 8 Stream API?

左心房为你撑大大i 提交于 2019-11-30 19:05:26

问题


I have below code snap with Java 8.

 List<Employee> employees = DataProvider.getEmployees();
 Set<Employee> set = employees.stream().filter(emp -> {
                System.out.println(emp.getName());
                return emp.getName().equals("Vishal");
            }).collect(Collectors.toSet());

I just want to know which implementation of Set it is using by default when we use Collectors.toSet() (refer above example)?

Also, is there any way to tell the Java API to use a particular implementation (for example, HashSet)?


回答1:


The toSet() collector does not specify which implementation it uses; you get a Set, that's all.

If you want a specific kind of set, use toCollection() and provide a factory method for your set:

    ...collect(Collectors.toCollection(HashSet::new));


来源:https://stackoverflow.com/questions/31639979/what-is-the-default-set-list-implementation-with-collectors-in-java-8-stream-api

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!