java8集合求最大值
时间: 2023-09-21 09:04:59 浏览: 99
java用list集合存储学生信息并算出成绩平均值操作
5星 · 资源好评率100%
您好!关于您的问题,我可以回答。在Java8中,可以使用Stream的max()方法获取集合的最大值。例如,对于一个Integer类型的List,可以这样写:
List<Integer> list = Arrays.asList(1, 5, 3, 9, 7);
Integer max = list.stream().max(Integer::compareTo).get();
这样就可以得到这个List的最大值。希望能帮到您。
阅读全文