rui_rookie 2020-09-26 13:58 采纳率: 100%
浏览 81
已采纳

list.stream().map(e -> new BigDecimal(e.getValue())).collect(Collectors.toList())中的 e 代表什么?

list.stream().map(e -> new BigDecimal(e.getValue())).collect(Collectors.toList());
中的 e 代表什么?

  • 写回答

1条回答 默认 最新

  • threenewbee 2020-09-27 01:07
    关注

    lambda表达式的参数,之所以用e,是因为它代表流里面的每一个元素(element)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?