我想要做的下面的方法是尋找一個特定的學生在一個數組列表中,名稱和唯一編號(HUN)分別匹配鍵和keyInt。一旦找到該學生,它應該添加到本地數組列表returnStudent並返回它。但行returnStudent.add(student(i));
給我一個錯誤,我不知道如何解決它,我需要它將特定的學生添加到本地數組列表。搜索並添加到數組列表
public ArrayList<Student1> searchByKey(String key, int keyInt)
{
ArrayList<Student1> returnStudent = new ArrayList<Student1>();
Student1 student = new Student1(key);
int i = 0;
while(i <= students.size())
{
if(student.getName().equals(key) && student.getHUN() == keyInt)
{
return Student.add(student(i));
}
i=i+1;
}
return returnStudent;
}
在此先感謝。
使用'我
'給我一個錯誤'..那是什麼錯誤? – Null
學生和學生是不同的? – cuongptnk