show/hide this revision's text 2 deleted 200 characters in body

Here's the Guerilla's guide to equals() and hashCode():

  1. Don't use

    1. 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.
    2. Make your objects immutable and seal your classes (everything either abstract or final).

    Be careful out there.

show/hide this revision's text 1

Here's the Guerilla's guide to equals() and hashCode():

  1. Don't use them. The design of equals() and hashCode() is broken. Use instances of Equal and Hash instead (see here: Equal, Hash).
  2. Make your objects immutable and seal your classes (everything either abstract or final).

Be careful out there.