我有一堂课叫Person
. 它有以下内容attributes
;它有 2 个属性ID
, 和Telephone
。1个人可以有很多电话,所以你可能会在下面看到有多个ID的人。
public ArrayList<Person> all(){
p = new ArrayList<Person>();
p.add(new Person(1,266763));
p.add(new Person(1, 358643));
p.add(new Person(2, 4667763));
return p;
}
还有一个类叫做PersonDB
. 它将有一个名为 的方法findPersonWithTheTelephoneNumber(int telephone)
。
public void findPersonWithTheTelephoneNumber(int telephone) {
Person pp = new Person();
ArrayList<Person> personList = pp.all();
// Now i want to find the Person object that will match the telephone number of these list of personList.
}
personList 有 3-4 个 Person 对象。我需要搜索 PersonArrayList 并找到与 Person 对象匹配的对象。我怎样才能做到这一点?
注意:我试过了personList.contains()
。但这不起作用。