假设我有一堂课
public class Data{
public int k;
public int l;
public Data(int k, int l){
this.k = k;
this.l = l;
}
public boolean equals(Date m){
if(this.k == m.k && this.l = m.l)
return true;
return false;
}
}
我在 ArrayList 中添加了一些 Data 对象:
ArrayList<Data> holder = new ArrayList<Data>;
Data one = new Data(0,0);
Data two = new Data(0,4);
Data three = new Data(0,5);
为什么 indexOf 找不到这个?:
holder.indexOf(new Data(0,4)); //returns -1
indexOf 是否比我自己遍历整个数组列表更好?或者我错过了什么。