工作中常用的lambda 操作文章来源:https://www.toymoban.com/news/detail-520084.html
Lambda表达式将 List<String> 转 List<Long>
List<String> collect = new ArrayList<>();
collect.add("123");
collect.add("456");
List<Long> userIdList = collect.stream().map(item -> Long.parseLong(item)).collect(Collectors.toList());
lambda表达式将List对象某个字段转换以逗号分隔的String类型文章来源地址https://www.toymoban.com/news/detail-520084.html
String invoiceNos = receiptDTOList.stream() .map(ErpPurchaseInvoiceReceiptDTO::getInvoiceNo).collect(Collectors.joining(","));
表达式将List对象某个字段转换新List List<ErpPurchaseInvoiceReceiptDTO> receiptDTOList= unionDtos.stream() .map(ErpPurchaseInvoiceUnionDTO::getPurchaseInvoiceReceipt).collect(Collectors.toList());
java lambda表达式 将对象某个字段拆分,放入集合,并分组统计
到了这里,关于java lambda 工作中使用大全 Lambda表达式将 List<String> 转 List<Long>的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!