hashCode() for an array of objects for use in HashMap

前端 未结 2 1282
别那么骄傲
别那么骄傲 2020-12-22 04:26

I Have the following two classes and want to use Foo1 as keys in a HashMap. Two Foo1 objects are equal if their Foo2 obj

相关标签:
2条回答
  • 2020-12-22 05:10

    You essentially need to have some method that makes it likely that different objects will have different hash codes.

    So depending on your data, you don't necessarily need to sum up the hashes of all the items in the array. You just basically need something "good enough to narrow things down".

    I would put it like this: is there anything about your data that makes you suspect you couldn't just take, say, the hash code of the middle value of the array? Or maybe the combined hash codes of the first, last and middle items, for example?

    (Things that would make you suspect you couldn't do that: if, say, your data had some special feature making a certain narrow subset of values occur as the middle element in the array.)

    0 讨论(0)
  • 2020-12-22 05:24

    Your hashcode should use the same set of properties as equals for it not to break the contract.

    Just use the Arrays.hashcode as done in Foo2

    Also you dont have to loop through each element in your equals you can just use Arrays.equals

    Foo2 equals can look like this similar to Foo1.equals

        @Override
        public boolean equals(Object obj) {
            if (this == obj)
                return true;
            if (obj == null)
                return false;
            if (getClass() != obj.getClass())
                return false;
            Foo1 other = (Foo1) obj;
            if (!Arrays.equals(foo2_array, other.foo2_array))
                return false;
            return true;
        }
    

    and hashcode similar to Foo1 hashcode

        @Override
        public int hashCode() {
            return Arrays.hashCode(foo2_array);
        }
    

    Also while implementing equals do check for same reference and object validity for null.

    0 讨论(0)
提交回复
热议问题