Object comparison refers to the ability of an object to determine whether it is essentially the same as another object. You evaluate whether one object is equal to another by sending one of the objects an isEqual:
message and passing in the other object. If the objects are equal, you receive back YES
; if they are not equal, you receive NO
. Each class determines equality for its instances by implementing class-specific comparison logic. The root class, NSObject
, measures equality by simple pointer comparison; at the other extreme, the determinants of equality for a custom class might be class membership plus all encapsulated values.
Some classes of the Foundation framework implement comparison methods of the form isEqualTo
Type:
—for example, isEqualToString:
and isEqualToArray:
. These methods perform comparisons specific to the given class type.
The comparison methods are indispensable coding tools that can help you decide at runtime what to do with an object. The collection classes such as NSArray
and NSDictionary
use them extensively.
Implementing Comparison Logic
If you expect instances of your custom subclass to be compared, override the isEqual:
method and add comparison logic that is specific to your subclass. Your class, for example, might accept the superclass’s determination of equality but then add further tests. Your class may have one or more instance variables whose values should be equal before two instances of your class can be considered equal. The following implementation of isEqual:
performs a series of checks, ending with one that is class-specific (the name
property).
- (BOOL)isEqual:(id)other { |
if (other == self) |
return YES; |
if (![super isEqual:other]) |
return NO; |
return [[self name] isEqualToString:[other name]]; // class-specific |
} |
If you override isEqual:
, you should also implement the hash
method to generate and return an integer that can be used as a table address in a hash table structure. If isEqual:
determines that two objects are equal, they must have the same hash value.
------------------越是喧嚣的世界,越需要宁静的思考------------------ 合抱之木,生于毫末;九层之台,起于垒土;千里之行,始于足下。 积土成山,风雨兴焉;积水成渊,蛟龙生焉;积善成德,而神明自得,圣心备焉。故不积跬步,无以至千里;不积小流,无以成江海。骐骥一跃,不能十步;驽马十驾,功在不舍。锲而舍之,朽木不折;锲而不舍,金石可镂。蚓无爪牙之利,筋骨之强,上食埃土,下饮黄泉,用心一也。蟹六跪而二螯,非蛇鳝之穴无可寄托者,用心躁也。