爲什麼我不能傳遞數組?爲什麼我不能將這個數組傳遞給我的目標類?
for (int a = 0;; a++) {
System.out.print("Enter Name:");
name[a] = in.nextLine();
System.out.print("Enter Age:");
age[a] = in.nextInt();
in.nextLine();
Student student = new Student(name[], age[]);
}
的錯誤說,它需要在陣列後的.class 幫助
簡單的拼寫錯誤 - '學生學生=新的學生(姓名,年齡);' –
^,並宣佈你的數組是'String [] name'而不是'String name []'。它的可讀性更高。 –