stream获取List最后一个元素

stream获取List最后一个元素_第1张图片

List<String> names = new ArrayList<>();
httpIds.sort(Integer::compareTo);

 httpIds.forEach(id -> names.add(Arrays.asList(marketCache.getHttpById(id).getHttpUrl().split("/")).stream().reduce((first, second) -> second).orElse("no last element")+"-"+marketCache.getHttpById(id).getDescription()));
return String.join(";", names);插入代码片

你可能感兴趣的:(stream)