和Collections ,Collection 不一样,
Collectors 可以接收方法作为参数:
Double averagingDouble = menu.stream().collect(Collectors.averagingDouble(Student::getTotalScore));
Stream.of () 和 xxx.stream() 是有区别的,of返回的是静态对象。
好文 : Java8中Collectors详解_Life is for sharing的博客-优快云博客_collectors