collectingAndThen
2、collectingAndThenstatic <T,A,R,RR> Collector<T,A,RR> collectingAndThen(Collector<T,A,R> downstream, Function<R,RR> finisher)根据函数名称可以简单理解为先collect然后再对其结果进行后续操作。在上面的averagingInt函数的使用方法