Java hashCode from one field

前端 未结 3 603
遥遥无期
遥遥无期 2021-01-05 14:32

Edit: Prepare my objects for the use within a HashMap.

after reading a bit about how to generate a hash code, im kind of confused now. My (probably trivial) question

相关标签:
3条回答
  • 2021-01-05 14:44

    If you want objects with different ids to identified by that id all you need to do is return it/compare it.

    private final int id;
    
    public int hashCode() { return id; }
    
    public boolean equals(Object o) { 
        return o instanceof ThisClass && id == ((ThisClass)o).id;
    }
    
    0 讨论(0)
  • 2021-01-05 14:46

    It does not matter that how many fields are used to calculate hashCode. But it matters working with equals(). If A equals B, their hashCode must be same.

    If you hate hashCode:) and your object never be put to hash based containers(HashMap, HashSet..), just leave hashCode() alone, let its base class to calculate hashCode.

    0 讨论(0)
  • 2021-01-05 15:04

    If your object is mutable, then it is acceptable to have its hash code change over time. Of course, you should prefer immutable objects (Effective Java 2nd Edition, Item 15: Minimize mutability).

    Here's the hashcode recipe from Josh Bloch, from Effective Java 2nd Edition, Item 9: Always override hashCode when you override equals:

    Effective Java 2nd Edition hash code recipe

    • Store some constant nonzero value, say 17, in an int variable called result.
    • Compute an int hashcode c for each field:
      • If the field is a boolean, compute (f ? 1 : 0)
      • If the field is a byte, char, short, int, compute (int) f
      • If the field is a long, compute (int) (f ^ (f >>> 32))
      • If the field is a float, compute Float.floatToIntBits(f)
      • If the field is a double, compute Double.doubleToLongBits(f), then hash the resulting long as in above.
      • If the field is an object reference and this class's equals method compares the field by recursively invoking equals, recursively invoke hashCode on the field. If the value of the field is null, return 0.
      • If the field is an array, treat it as if each element is a separate field. If every element in an array field is significant, you can use one of the Arrays.hashCode methods added in release 1.5.
    • Combine the hashcode c into result as follows: result = 31 * result + c;

    It would be correct to follow the recipe as is, even with just one field. Just do the appropriate action depending on the type of the field.

    Note that there are libraries that actually simplify this for you, e.g. HashCodeBuilder from Apache Commons Lang, or just Arrays.hashCode/deepHashCode from java.util.Arrays.

    These libraries allows you to simply write something like this:

    @Override public int hashCode() {
        return Arrays.hashCode(new Object[] {
            field1, field2, field3, //...
        });
    }
    

    Apache Commons Lang example

    Here's a more complete example of using the builders from Apache Commons Lang to facilitate a convenient and readable equals, hashCode, toString, and compareTo:

    import org.apache.commons.lang.builder.*;
    
    public class CustomType implements Comparable<CustomType> {
        // constructors, etc
        // let's say that the "significant" fields are field1, field2, field3
        @Override public String toString() {
            return new ToStringBuilder(this)
                .append("field1", field1)
                .append("field2", field2)
                .append("field3", field3)
                    .toString();
        }
        @Override public boolean equals(Object o) {
            if (o == this) { return true; }
            if (!(o instanceof CustomType)) { return false; }
            CustomType other = (CustomType) o;
            return new EqualsBuilder()
                .append(this.field1, other.field1)
                .append(this.field2, other.field2)
                .append(this.field3, other.field3)
                    .isEquals();
        }
        @Override public int hashCode() {
            return new HashCodeBuilder(17, 37)
                .append(field1)
                .append(field2)
                .append(field3)
                    .toHashCode();
        }
        @Override public int compareTo(CustomType other) {
            return new CompareToBuilder()
                .append(this.field1, other.field1)
                .append(this.field2, other.field2)
                .append(this.field3, other.field3)
                    .toComparison();
        }
    }
    

    These four methods can be notoriously tedious to write, and it can be difficult to ensure that all of the contracts are adhered to, but fortunately libraries can at least help make the job easier. Some IDEs (e.g. Eclipse) can also automatically generate some of these methods for you.

    See also

    • Apache Commons Lang Builders
      • EqualsBuilder
      • HashCodeBuilder
      • ToStringBuilder
      • CompareToBuilder
    • Effective Java 2nd Edition
      • Item 8: Obey the general contract when overriding equals
      • Item 9: Always override hashCode when you override equals
      • Item 10: Always override toString
      • Item 12: Consider implementing Comparable
      • Item 2: Consider a builder when faced with many constructor parameters
    0 讨论(0)
提交回复
热议问题