解决方案reduce()
:
int[] array = {23, 3, 56, 97, 42};
// directly print out
Arrays.stream(array).reduce((x, y) -> x > y ? x : y).ifPresent(System.out::println);
// get the result as an int
int res = Arrays.stream(array).reduce((x, y) -> x > y ? x : y).getAsInt();
System.out.println(res);
>>
97
97
在上面的代码,reduce()
返回的数据Optional
格式,它可以转换为int
通过getAsInt()
。
如果要比较最大值和某个数字,可以在中设置一个起始值reduce()
:
int[] array = {23, 3, 56, 97, 42};
// e.g., compare with 100
int max = Arrays.stream(array).reduce(100, (x, y) -> x > y ? x : y);
System.out.println(max);
>>
100
在上面的代码中,当reduce()
以身份(起始值)作为第一个参数时,它将以与身份相同的格式返回数据。借助此属性,我们可以将此解决方案应用于其他数组:
double[] array = {23.1, 3, 56.6, 97, 42};
double max = Arrays.stream(array).reduce(array[0], (x, y) -> x > y ? x : y);
System.out.println(max);
>>
97.0
Collections.max(Arrays.asList())
。