java 使用reduce和Integer.max查找最大值java 8

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 使用reduce和Integer.max查找最大值java 8相关的知识,希望对你有一定的参考价值。

import java.util.Arrays;
import java.util.List;
//from w w w.  j a  v a  2 s.  c o m
public class Main {
  public static void main(String...args){
    List<Integer> numbers = Arrays.asList(3,4,5,1,2);

    int max = numbers.stream().reduce(0, (a, b) -> Integer.max(a, b));
    System.out.println(max);
    
  }
}

以上是关于java 使用reduce和Integer.max查找最大值java 8的主要内容,如果未能解决你的问题,请参考以下文章

有没有办法在 Java 中映射大于 Integer.MAX_VALUE 的文件?

为啥 FileChannel.map 占用了 Integer.MAX_VALUE 的数据?

Integer.MAX_VALUE 和 Integer.MIN_VALUE

Java Integer 缓存特性(Integer最大/小值探究整型的自动装箱)

Integer.MAX_VALUE和Integer.MIN_VALUE的解释,用于查找数组中的最小值和最大值

Integer.MIN_VALUE和Integer.MAX_VALUE