java工具:《Java 8 Stream实战:一行代码搞定集合对象类型转换》

发布时间:2026/6/24 9:06:47

java工具:《Java 8 Stream实战:一行代码搞定集合对象类型转换》 文章目录一、介绍二、代码一、介绍二、代码list中Enrey转Dto↓ListWarningNoticeDtowarningNoticeDtoListwarningNoticeList.getInfo().getList().stream().map(this::getEntryToDto).collect(Collectors.toList());/** * entry转DTO * param warningNotice entry * return dto */privateWarningNoticeDtogetEntryToDto(WarningNoticewarningNotice){WarningNoticeDtowarningNoticeDtonewWarningNoticeDto();BeanUtils.copyProperties(warningNotice,warningNoticeDto);returnwarningNoticeDto;}

相关新闻