Java stream()用法集合单独取出对象中一个属性成为集合或数组

取出属性为集合
 

List<String> stateNameList = dictEntityList.stream().map(DictEntity::getName).collect(Collectors.toList());

取出属性为数组
 

Long[] ids = dictEntityList.stream().map(DictEntity::getId).toArray(Long[]::new);

集合去重
 

dictEntityList.stream().distinct().collect(Collectors.toList());

 

原创文章,作者:6024010,如若转载,请注明出处:https://blog.ytso.com/243865.html

(0)
上一篇 2022年4月11日
下一篇 2022年4月11日

相关推荐

发表回复

登录后才能评论