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

I have a class Person which contains String firstName, lastName. I want to insert instances of this class into a List, but I don't want to insert duplicates.

How do I use a HashSet such that it uses something like firstName+lastName to figure out duplicates?

share|improve this question

4 Answers

up vote 10 down vote accepted

You need an equals() and a hashCode() method in your Person class.

equals() is straightforward, and for hashCode() the easiest solution is:

public int hashCode() {
  return Arrays.hashCode( new Object[] { firstName, lastName } );
}

Although if your Person object is immutable (as it should be, if you're putting it in a HashSet), you should cache this value.

share|improve this answer
1  
Possibly helpful link: javapractices.com/topic/TopicAction.do?Id=28 – SB. Mar 3 '11 at 20:28

You need to make your .equals() method return true for two Persons with the same first and last name. You need to also implement the .hashcode() method to ensure that two equal object have the same hashcode.

Your question refers to using a List, and then mentions HashSet. If preserving insertion order is important then a HashSet is not what you want, you should use LinkedHashSet.

share|improve this answer

Important -> You need to implement equals AND hashcode

Always implement both. And they must be consistent-> if 2 object are equals they must have the same hashcode.

THIS IS VERY IMPORTANT. READ AGAIN. :)

HashSets and HashMaps use hashcode and equals to compare elements. Diferent elements may have the same hashcode, but they are not equals

share|improve this answer

You should just use a Set instead of a List. If you care about insertion order, use a LinkedHashSet.

share|improve this answer

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.