A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. public static void main(String[] args) {
  2.                 int[] arr = { 5, 1, 6, 4, 2, 8, 9 };
  3.                 getMax(arr);
  4.         }
  5.         public static int getMax(int[] arr){
  6.                 int max = arr[0];
  7.                 for (int i = 0; i < arr.length; i++) {
  8.                         if (arr[i] > max) {
  9.                                 max = arr[i];
  10.                         }
  11.                 }
  12.                 System.out.println(max);
  13.                 return max;
复制代码


6 个回复

倒序浏览
康师傅-蛋黄派 来自手机 中级黑马 2014-10-14 13:08:20
沙发
严谨一点,i从1开始吧
回复 使用道具 举报
康师傅-蛋黄派 来自手机 中级黑马 2014-10-14 13:09:51
藤椅
少个大括号吧
回复 使用道具 举报

这不是重点,能解释吗?
回复 使用道具 举报

好吧,解释一下问题吧
回复 使用道具 举报
  1. public class GetMax
  2. {

  3.         public static void main(String[] args)
  4.         {
  5.         int[] arr = { 5, 1, 6, 4, 2, 8, 9 };
  6.         int V = getMax(arr);
  7.         System.out.println(V);
  8.         }
  9.         public static int getMax(int[] arr)
  10.         {
  11.         int max = arr[0];
  12.         for (int i = 0; i < arr.length; i++)
  13.         {
  14.                 if (arr[i] > max)
  15.                 {
  16.                         max = arr[i];
  17.                 }
  18.         }
  19.         return max;
  20.         }
  21. }
复制代码

你这个代码应该是这个样子的吧,你可以这样理解,因为此时max结果为9,return就是返回,把max的结果返回去,那把他返还给谁呢,谁调用的他就反给谁,int V = getMax(arr)这里调用了,所以就把9返给V,所以V就等于9,然后输出来就完了。
回复 使用道具 举报
Mr.Ni 中级黑马 2014-10-14 20:50:56
7#
楼上正解
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马