Here's the Guerilla's guide to equals() and hashCode():
- Don't use
- Avoid using them. The designof equals() and hashCode() , which favours inheritance over composition, is broken. Use instances of Equal and Hash instead (see here: EqualBy extension, Hash)so is the collections framework in the standard library. Don't use that either.
- Make your objects immutable and seal your classes (everything either abstract or final).
Be careful out there.
