stream主要用于处理数据,看一下jdk的文档,并且主要处理集合对象:
int sum = widgets.stream() .filter(w -> w.getColor() == RED) .mapToInt(w -> w.getWeight()) .sum();