Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is part of my implementation

aFList = new HashSet<Fault>();
bFList = new HashSet<Fault>();
oFList = new HashSet<Fault>();

temp.addAll(aFList);
temp.addAll(bFList);
oFList.addAll(temp);

Fault Class is as follows

public class Fault {
    int nodeIndex;
    boolean val;
}

Display() {
    Object [] temp;
    temp = aFList2.toArray();
    for(int i=0;i<temp.length;i++)
        ((Fault) temp[i]).display();
}

Results:

14_true 
6_true 
17_false 
16_false 
16_false 
9_false 
14_true 

Question: Why do I get repeated list elements? It might be because oFList already contained those elements but I thought a HashSet would take care of duplicates. Am I missing something?

share|improve this question

1 Answer

up vote 4 down vote accepted

If you're going to put a class in a HashMap or HashSet, you MUST implement equals() and hashCode().

share|improve this answer
1  
Well, you don't have to. But if you want "equivalent" instances to map to the same entry then you should. – Hot Licks Oct 23 '11 at 22:27
I have a equal() but no hashcode()..do I need that? – SP6 Oct 23 '11 at 22:31
1  
@pleasedeleteme - yes you do. Whenever you override equals() you need a hashcode() that matches the behaviour of the equals() method. – Stephen C Oct 23 '11 at 22:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.