ソリューション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()
、最初のパラメーターとしてID(開始値)を使用すると、IDと同じ形式でデータが返されます。このプロパティを使用すると、このソリューションを他のアレイに適用できます。
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())
。