- List< String >转换成List< Integer>
stringList.stream().map(Integer::parseInt).collect(Collectors.toList())
- 取出list集合对象中某一个属性
List<String> listStr = list.stream().map(Student::getName).collect(Collectors.toList());
- List集合取出最大值和最小值
Collections.min(amountList);