请参阅以下代码:
Scanner scan = new Scanner(System.in);
int T = Integer.parseInt(scan.nextLine());
StringBuilder []str = new StringBuilder[T];
String temp = new String();
for (int i=0; i < T; i++){
temp = scan.nextLine();
str[i].append(temp);
}
System.out.println(str);
上面的代码在行上抛出空指针异常:
str[i].append(temp);
我想用StringBuilder做。