2021
02-20
02-20
java8 实现提取集合对象的每个属性
新建一个集合List<Bill>billList=newArrayList<>();将订单中所有物品的名称提取出来做一个集合List<String>goodsNameList=billList.stream().map(Bill::getGoodsName).collect(Collectors.toList());补充:java8lamada提取集合中每个对象的属性中台项目中:MelotPageResultquestionRelas=questionStudentRelaBiz.queryByParam(param);ListquestionIds=questionRelas.getList().stream().map(QuestionStudentRela::g...
继续阅读 >