我目前是AP计算机科学老师,在我的教室里我们有桌面版本运行。我使用的20台计算机中有2台遇到BlueJ无法识别Arrays类中的sort方法的问题。他们正确地导入了java.util。*但是当我们编译它时说方法无法识别。是什么导致它只发生在2名学生而没有其他人?
感谢您的帮助!
import java.util.*;
public static int range(int[] a)
{
int[] copy = new int[a.length];
for (int i = 0; i < a.length; i++)
{
copy[i] = a[i];
}
Arrays.sort(copy);
return copy[copy.length - 1] - copy[0];
}