How do you properly override isEqual: in Objective-C? The "catch" seems to be that if two objects are equal (as determined by the isEqual: method), they must have the same hash value.

The Introspection section of the Cocoa Fundamentals Guide does have an example on how to override isEqual:, copied as follows, for a class named MyWidget:

- (BOOL)isEqual:(id)other {
    if (other == self)
        return YES;
    if (!other || ![other isKindOfClass:[self class]])
        return NO;
    return [self isEqualToWidget:other];
}

- (BOOL)isEqualToWidget:(MyWidget *)aWidget {
    if (self == aWidget)
        return YES;
    if (![(id)[self name] isEqual:[aWidget name]])
        return NO;
    if (![[self data] isEqualToData:[aWidget data]])
        return NO;
    return YES;
}

It checks pointer equality, then class equality, and finally compares the objects using isEqualToWidget:, which only checks the name and data properties. What the example doesn't show is how to override hash.

Let's assume there are other properties that do not affect equality, say age. Shouldn't the hash method be overridden such that only name and data affect the hash? And if so, how would you do that? Just add the hashes of name and data? For example:

- (NSUInteger)hash {
    NSUInteger hash = 0;
    hash += [[self name] hash];
    hash += [[self data] hash];
    return hash;
}

Is that sufficient? Is there a better technique? What if you have primitives, like int? Convert them to NSNumber to get their hash? Or structs like NSRect?

(Brain fart: Originally wrote "bitwise OR" them together with |=. Meant add.)

link|improve this question
feedback

13 Answers

up vote 28 down vote accepted

Start with

 int prime = 31;
 int result = 1;

Then for every primitive you do

 result = prime * result + var

For 64bit you might also want to shift and xor.

 result = prime * result + (int) (var ^ (var >>> 32));

For objects you use 0 for nil and otherwise their hashcode.

 result = prime * result + [var hash];

For booleans you use two different values

 result = prime * result + (var)?1231:1237;
link|improve this answer
8  
Where did the 1231:1237 come from? I see it in Java's Boolean.hashCode() too. Is it magical? – David Leonard Mar 9 '09 at 5:32
4  
Don't use this method, it has a lot of potential to overflow your hash value. Resulting hashes can map to the same value after an overflow, which will cause a lot of pain when you need a hash function for the collection classes. – Paul Solt Dec 11 '10 at 21:37
8  
It's the nature of a hashing algorithms that there will be collisions. So I don't see your point, Paul. – tcurdt Aug 4 '11 at 22:38
14  
In my opinion this answer doesn't respond to the actual question (best practices for overriding NSObject's hash). It just provides one particular hash algorithm. On top of that, the sparsity of the explanation makes it difficult to understand without deep knowledge on the matter, and can result in people using it without knowing what are they doing. I don't understand why this question has so many upvotes. – rsanchezsaez Oct 12 '11 at 20:41
2  
1st problem - (int) is small and easy to overflow, use NSUInteger. 2nd problem - If you keep multiplying the result by each variable hash your result will overflow. eg. [NSString hash] creates large values. If you have 5+ variables it's easy to overflow with this algorithm. It'll result in everything mapping to the same hash, which is bad. See my response: stackoverflow.com/a/4393493/276626 – Paul Solt Jan 6 at 1:52
show 4 more comments
feedback

I'm just picking up Objective-C myself, so I can't speak for that language specifically, but in the other languages I use if two instances are "Equal" they must return the same hash - otherwise you are going to have all sorts of problems when trying to use them as keys in a hashtable (or any dictionary-type collections).

On the other hand, if 2 instances are not equal, they may or may not have the same hash - it is best if they don't. This is the difference between an O(1) search on a hash table and an O(N) search - if all your hashes collide you may find that searching your table is no better than searching a list.

In terms of best practices your hash should return a random distribution of values for its input. This means that, for example, if you have a double, but the majority of your values tend to cluster between 0 and 100, you need to make sure that the hashes returned by those values are evenly distributed across the entire range of possible hash values. This will significantly improve your performance.

There are a number of hashing algorithms out there, including several listed here. I try to avoid creating new hash algorithms as it can have large performance implications, so using the existing hash methods and doing a bitwise combination of some sort as you do in your example is a good way to avoid it.

link|improve this answer
1  
+1 Excellent answer, deserves more upvotes, especially since he actually talks about "best practices" and the theory behind why a good (unique) hash is important. – Quinn Taylor Jul 11 '09 at 14:30
feedback

The easy but inefficient way is to return the same -hash value for every instance. Otherwise, yes, you must implement hash based only on objects which affect equality. This is tricky if you use lax comparisons in -isEqual: (e.g. case-insensitive string comparisons). For ints, you can generally use the int itself, unless you’ll be comparing with NSNumbers.

Don’t use |=, though, it will saturate. Use ^= instead.

Random fun fact: [[NSNumber numberWithInt:0] isEqual:[NSNumber numberWithBool:NO]], but [[NSNumber numberWithInt:0] hash] != [[NSNumber numberWithBool:NO] hash]. (rdar://4538282, open since 05-May-2006)

link|improve this answer
You're exactly right on the |=. Didn't really mean that. :) += and ^= are fairly equivalent. How do you handle non-integer primitives like double and float? – Dave Dribin Oct 31 '08 at 18:08
Random fun fact: Test it on Snow Leopard... ;-) – Quinn Taylor Jul 10 '09 at 22:25
He's correct about using XOR instead of OR for combining fields into a hash. However, don't use the advice of returning the same -hash value for every object — although it easy, it can severely degrade the performance of anything that uses the object's hash. The hash does not have to be distinct for objects that aren't equal, but if you can achieve that, there's nothing like it. – Quinn Taylor Jul 11 '09 at 14:28
The open radar bug report is closed. openradar.me/4538282 What does that mean? – JJD Nov 19 '10 at 11:26
JJD, the bug was fixed in Mac OS X 10.6, as Quinn hinted. (Note that the comment is two years old.) – Ahruman Nov 19 '10 at 12:02
feedback

I found this thread extremely helpful supplying everything I needed to get my isEqual: and hash methods implemented with one catch. When testing object instance variables in isEqual: the example code uses:

if (![(id)[self name] isEqual:[aWidget name]])
    return NO;

This repeatedly failed (i.e., returned NO) without and error, when I knew the objects were identical in my unit testing. The reason was, one of the NSString instance variables was nil so the above statement was:

if (![nil isEqual: nil])
    return NO;

and since nil will respond to any method, this is perfectly legal but

[nil isEqual: nil]

returns nil, which is NO, so when both the object and the one being tested had a nil object they would be considered not equal (i.e., isEqual: would return NO).

This simple fix was to change the if statement to:

if ([self name] != [aWidget name] && ![(id)[self name] isEqual:[aWidget name]])
    return NO;

This way, if their addresses are the same it skips the method call no matter if they are both nil or both pointing to the same object but if either is not nil or they point to different objects then the comparator is appropriately called.

I hope this saves someone a few minutes of head scratching.

link|improve this answer
feedback

I'm an Objective C newbie too, but I found an excellent article about identity vs. equality in Objective C here. From my reading it looks like you might be able to just keep the default hash function (which should provide a unique identity) and implement the isEqual method so that it compares data values.

link|improve this answer
I'm a Cocoa/Objective C newbie, and this answer and link really helped me cut through all the more advanced stuff above to the bottom line - I don't need to worry about hashes - just implementing the isEqual: method. Thanks! – John Gallagher Dec 14 '09 at 18:57
Do not miss @ceperry's link. The article Equality vs Identity by Karl Kraft is really good. – JJD Nov 19 '10 at 14:42
3  
@John: I think you should re-read the article. It says very clearly that "instances that are equal must have equal hash values." If you override isEqual:, you must also override hash. – Steve Madsen Mar 16 '11 at 15:10
feedback

I've found this page to be a helpful guide in override equals- and hash-type methods. It includes a decent algorithm for calculating hash codes. The page is geared towards Java, but it's pretty easy to adapt it to Objective-C/Cocoa.

link|improve this answer
1  
RIP Geocities... – John Cromartie Mar 15 '10 at 16:56
1  
cached link via archive.org: web.archive.org/web/20071013053633/http://www.geocities.com/… – cobbal May 19 '10 at 23:49
1  
Here is the new link: technofundo.com/tech/java/equalhash.html – JJD Nov 19 '10 at 10:58
feedback

This doesn't directly answer your question (at all) but I've used MurmurHash before to generate hashes: http://murmurhash.googlepages.com

Guess I should explain why: murmurhash is bloody fast...

link|improve this answer
1  
A C++ library that is focused on unique hashes for a void* key using random number (and also doesn't relate to Objective-C objects) really isn't a helpful suggestion here. The -hash method should return a consistent value each time, or it will be utterly useless. If the object is added to a collection that calls -hash, and returns a new value every time, duplicates will never be detected, and you can never retrieve the object from the collection either. In this case, the term "hash" is different from the meaning in security/cryptography. – Quinn Taylor Jul 11 '09 at 14:18
1  
murmurhash is isn't a cryptographic hash function. Please check your facts before posting incorrect information. Murmurhash could be useful for hashing custom objective-c classes (esp. if you have a lot of NSDatas involved) because it is extremely fast. However I do grant you that maybe suggesting it isn't the best advice to give to someone "just picking up objective-c", but please note my prefix on my original reply to the question. – schwa Jan 22 '10 at 19:56
feedback

This helped me a lot! Might be the answer your looking for. http://www.mikeash.com/pyblog/friday-qa-2010-06-18-implementing-equality-and-hashing.html

link|improve this answer
feedback

Note that if you're creating a object that can be mutated after creation, the hash value must not change if the object is inserted into a collection. Practically speaking, this means that the hash value must be fixed from the point of the initial object creation. See Apple's documentation on the NSObject protocol's -hash method for more information:

If a mutable object is added to a collection that uses hash values to determine the object’s position in the collection, the value returned by the hash method of the object must not change while the object is in the collection. Therefore, either the hash method must not rely on any of the object’s internal state information or you must make sure the object’s internal state information does not change while the object is in the collection. Thus, for example, a mutable dictionary can be put in a hash table but you must not change it while it is in there. (Note that it can be difficult to know whether or not a given object is in a collection.)

This sounds like complete whackery to me since it potentially effectively renders hash lookups far less efficient, but I suppose it's better to err on the side of caution and follow what the documentation says.

link|improve this answer
1  
You're reading the hash docs wrong — it's essentially an "either-or" situation. If the object changes, the hash generally also changes. This is really a warning to the programmer, that if the hash changes as a result of mutating an object, then changing the object while it resides in a collection that utilizes the hash will cause unexpected behavior. If the object must be "safely mutable" in such a situation, you have no choice but to make the hash unrelated to the mutable state. That particular situation does sound strange to me, but there are certainly infrequent situations where it applies. – Quinn Taylor Jul 11 '09 at 14:11
feedback

The point of the hash function is to create a semi-unique value for the object.

With hash functions, you need to be aware of integer overflow. The accepted answer from tcurdt suffers from this issue if you have multiple variables in your class. An integer overflow will essentially truncate and lose precision, so that two very large values can map to the same hash.

I ran into this issue with my hash function that was the result of 12 variables hashed using tcurdt's algorithm. prime * result will create very large numbers that can easily overflow outside the range of NSUInteger (0-NSUIntegerMax)

Instead it may be better to do something like:

-(NSUInteger)hash {
    NSUInteger result = 1;
    NSUInteger prime = 31;
    NSUInteger otherPrime = 71;
    NSUInteger yesPrime = 1231;
    NSUInteger noPrime = 1237;

    // Any object that already has a hash function can be added to the result
    result += [MyObject hash];

    // Use positive values of an integer, but don't map neg/pos values to the same hash
    // Note: Use this for small integers, large values can still overflow
    if(smallInteger < 0) {
        result += otherPrime * abs(smallInteger); 
    } else {
        result += prime * (smallInteger);
    }

    // Boolean values
    result += prime * selected?yesPrime:noPrime;

    return result;
}
link|improve this answer
feedback

Quinn is just wrong that the reference to the murmur hash is useless here. Quinn is right that you want to understand the theory behind hashing. The murmur distills a lot of that theory into an implementation. Figuring out how to apply that implementation to this particular application is worth exploring.

Some of the key points here:

The example function from tcurdt suggests that '31' is a good multiplier because it is prime. One needs to show that being prime is a necessary and sufficient condition. In fact 31 (and 7) are probably not particularly good primes because 31 == -1 % 32. An odd multiplier with about half the bits set and half the bits clear is likely to be better. (The murmur hash multiplication constant has that property.)

This type of hash function would likely be stronger if, after multiplying, the result value were adjusted via a shift and xor. The multiplication tends to produce the results of lots of bit interactions at the high end of the register and low interaction results at the bottom end of the register. The shift and xor increases the interactions at the bottom end of the register.

Setting the initial result to a value where about half the bits are zero and about half the bits are one would also tend to be useful.

It may be useful to be careful about the order in which elements are combined. One should probably first process booleans and other elements where the values are not strongly distributed.

It may be useful to add a couple of extra bit scrambling stages at the end of the computation.

Whether or not the murmur hash is actually fast for this application is an open question. The murmur hash premixes the bits of each input word. Multiple input words can be processed in parallel which helps multiple-issue pipelined cpus.

link|improve this answer
feedback

Sorry if I risk sounding a complete boffin here but... ...nobody bothered mentioning that to follow 'best practices' you should definitely not specify an equals method that would NOT take into account all data owned by your target object, e.g whatever data is aggregated to your object, versus an associate of it, should be taken into account when implementing equals. If you don't want to take, say 'age' into account in a comparison, then you should write a comparator and use that to perform your comparisons instead of isEqual:.

If you define an isEqual: method that performs equality comparison arbitrarily, you incur the risk that this method is misused by another developer, or even yourself, once you've forgotten the 'twist' in your equals interpretation.

Ergo, although this is a great q&a about hashing, you don't normally need to redefine the hashing method, you should probably define an ad-hoc comparator instead.

link|improve this answer
feedback

Hold on, surely a far easier way to do this is to first override - (NSString )description and provide a string representation of your object state (you must represent the entire state of your object in this string).

Then, just provide the following implementation of hash:

- (NSUInteger)hash {
    return [[self description] hash];
}

This is based on the principle that "if two string objects are equal (as determined by the isEqualToString: method), they must have the same hash value."

Source: NSString Class Reference

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.