java8一个List转化为另外一个List
warning:
这篇文章距离上次修改已过460天,其中的内容可能已经有所变动。
List
List<Promotion> promotionList = filterTags.stream().map(f -> {
Promotion tag = new Promotion(context);
tag.setLabel(f);
tag.setCode(f);
return tag;
}).collect(Collectors.toList());