我有这个类,我只需要toString()
内部方法的帮助来实际显示结果。它给了我一个无法使用getName()
或getId()
在静态上下文中的错误:
public static void bubbleSort(Student[] array)
{
for(int i=(array.length); i>0; i--)
for(int j=1; j<(array.length-i); j++)
if(array[j].getName().compareTo(
array[j+1].getName())<0) {
Student Temp = array[j];
array[j] = array[j+1];
array[j+1] = Temp;
}
String s = null;
for (int i=0; i<array.length; i++) {
// the error is here under the getName and getId
s= s+ getName()+" "+ getId() ;
}
System.out.print (s);
}