2013-08-17 60 views
1

我得到的錯誤是類預期? 我希望能夠傳遞任何數組。 我不明白爲什麼它不起作用。通用數組排序

public static <T extends Comparable<T>> T Max(T value[]) 
     { 
      T max = value[0]; 

      for(int x = 0; x < value[].length; x++) //here I get the error 
      { 
       if(value[x].compareTo(max) > 0) 
        max = value[x]; 
      } 


      return max; 
     } 
+2

'value.length' not'value []。length' –

回答

4

value[].length怎麼樣?正確的將是value.length