所以这是我的代码:
import java.util.Arrays;
import java.util.Scanner;
public class Test9 {
public static void main (String[] args) {
Scanner sc = new Scanner(System.in);
String invoer = null;
String[] sorteerArray = new String[25];
for (int i = 0; i < 25; i++) {
System.out.print (i + 1 );
invoer = sc.nextLine();
sorteerArray[i] = invoer;
if ("".equals(invoer)) {
break;
}
}
Arrays.sort(sorteerArray);
for (String sorteerArrayOutput : sorteerArray) {
System.out.println (sorteerArrayOutput);
}
}
}
我得到一个 NullPointerException,因为当我尝试对我的数组进行排序时,数组中有空值,那是因为我用 25 初始化了我的数组。我知道问题是什么,我只是不知道如何解决它。提前致谢 :)。
德玛西亚99
LEATH
Helenr
相关分类