list.stream().map(e -> new BigDecimal(e.getValue())).collect(Collectors.toList());中的 e 代表什么?
lambda表达式的参数,之所以用e,是因为它代表流里面的每一个元素(element)