這篇文章是我以前的帖子延續這裏找到對象比較...第2部分
Object comparison for equality : JAVA
根據我收到的建議,我創建了下面的類,做了equals()方法, hashcode()覆蓋....使用Eclipse IDE的一切。但是,當我比較兩個不同的對象時,我仍然得到一個錯誤,它們使用存儲這些對象的ArrayList的contains()方法引用相同的類。我不知道我的實施過程中出了什麼問題。想幫助排除故障。
public class ClassA {
private String firstId;
private String secondId;
/**
* @return the firstId
*/
public String getFirstId() {
return firstId;
}
/**
* @param firstId the firstId to set
*/
public void setFirstId(String firstId) {
this.firstId = firstId;
}
/**
* @return the secondId
*/
public String getSecondId() {
return secondId;
}
/**
* @param secondId the secondId to set
*/
public void setSecondId(String secondId) {
this.secondId = secondId;
}
/* (non-Javadoc)
* @see java.lang.Object#hashCode()
*/
public int hashCode() {
final int PRIME = 31;
int result = 1;
result = PRIME * result + ((firstId == null) ? 0 : firstId.hashCode());
result = PRIME * result + ((secondId == null) ? 0 : secondId.hashCode());
return result;
}
/* (non-Javadoc)
* @see java.lang.Object#equals(java.lang.Object)
*/
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final ClassA other = (ClassA) obj;
if (firstId == null) {
if (other.firstId != null)
return false;
} else if (!firstId.equals(other.firstId))
return false;
if (secondId == null) {
if (other.secondId != null)
return false;
} else if (!secondId.equals(other.secondId))
return false;
return true;
}
}
ClassA clsA1 = new ClassA();
ClassA clsA2 = new ClassA();
clsA1.setFirstId("value1");
clsA1.setSecondId("value2");
clsA2.setFirstId("value1");
clsA2.setSecondId("value2");
ArrayList a1 = new ArrayList();
ArrayList a2 = new ArrayList();
a1.add(clsA1);
a2.add(clsA2);
if(a1.contains(clsA2)
{
System.out.println("Success");
}
else
{
System.out.println("Failure");
}
我得到的結果爲「失敗」
對不起,,,我已經更新了我的代碼。兩個對象屬性都有相同的值..但我得到失敗...... – Raghu 2012-02-14 17:34:42
我現在看到的唯一的東西就是缺少的「)」,我希望你的代碼中有正確的東西嗎? 如果(a1.contains(clsA2)<< == { 的System.out.println( 「成功」);} 其他 { 的System.out.println( 「失敗」);} 對不起 – tres2k 2012-02-14 17:40:52
鄉親......這是我的錯,我從一張表中得到了我不應該使用的數據,這給了我沒有預料到的結果,因此也提出了這個問題,上面的代碼工作得很好。幫助。 – Raghu 2012-02-14 20:51:19