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

狂风中的少年 提交于 2019-12-01 01:22:56

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