java中有返回数组中的最大值的函数吗
是的,Java中有返回数组中的最大值的函数。可以使用Arrays类的静态方法max来实现。
以下是一个示例代码:
import java.util.Arrays;
public class Main {
public static void main(String[] args) {
int[] nums = {1, 3, 5, 2, 4};
int max = findMax(nums);
System.out.println("最大值是:" + max);
}
public static int findMax(int[] arr) {
int max = Arrays.stream(arr).max().getAsInt();
return max;
}
}
输出结果为:
最大值是:5
原文地址: https://www.cveoy.top/t/topic/hWrn 著作权归作者所有。请勿转载和采集!