Here is the answer of this question but I need is there any other way
假设Person是一个包含属性的类
一个ArrayList持有千人对象,我想检查“11”personId是否在ArayList中?
一种方法是迭代(循环)arraylist并逐个单独检查。
还有其他方法可以解决这个问题吗?
答案 0 :(得分:5)
在POJO中覆盖人员ID
中的equals()和hashcode()方法例如:
import java.util.ArrayList;
public class Test {
private int personId;
private String name;
//getters and Setters
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + personId;
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Test other = (Test) obj;
if (personId != other.personId)
return false;
return true;
}
public static void main(String[] args) {
ArrayList<Test> test=new ArrayList<Test>();
Test t=new Test();
t.setName("Sireesh");
t.setPersonId(1);
Test t1=new Test();
t1.setName("Ramesh");
t1.setPersonId(2);
Test t2=new Test();
t2.setName("Rajesh");
t2.setPersonId(3);
test.add(t);
test.add(t1);
test.add(t2);
Test tx=new Test();
tx.setPersonId(1);
System.out.println(test.contains(tx));
//Returns true
}
}
答案 1 :(得分:1)
根据equals
实施hashCode
和persionId
。 java.util.ArrayList#contains
会给你结果。这个解决方案与循环遍历列表和查找对象一样好。