本帖最后由 韩新凯 于 2012-4-18 15:18 编辑
给定数组获取数组最大值,public class ArrayTest {
public static void main(String[] args) {
ArrayTest at = new ArrayTest();
int[] arr = {1,2,4,6,3,2};
int max = at.getMaxValue(arr);
System.out.println("max = "+max);
}
public static int getMaxValue(int[] arr){
int maxValue = arr[0];
for(int i=0;i<arr.length;i++){
if(maxValue < arr){
maxValue = arr;
}
}
return maxValue;
}
}
如果给定的数组int[] arr = {};会出错,为什么? |
|