collection的方法,可以简化集合的操作,流式
Collection子类对象.stream()
.filter(s->s.getXX().contains(“YY”))
.map(s->s.getXX().toUpperCase()*2) //对元素逐一处理
.reduce((res,x)->res+x) //操作map的结果res;
。。。
mapToDouble(s->s.getXX().toUpperCase()*2).SummaryStatistics()
ss.getCount()//.getSum() //返回对象有多个统计属性。
.collect(Collectors.toList()) //收集器将过滤的结果包装为对应集合
.get() //到此处才正式执行