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;
}
'value.length' not'value []。length' –