Instance Method インスタンスメソッド

isEqual:

Returns a Boolean value that indicates whether the receiver and a given object are equal. レシーバと与えられたオブジェクトが等しいかどうかを指し示すブール値を返します。

Declaration 宣言

- (BOOL)isEqual:(id)object;

Parameters パラメータ

anObject

The object to be compared to the receiver. May be nil, in which case this method returns NO.

Return Value 戻り値

YES if the receiver and anObject are equal, otherwise NO.

Discussion 解説

This method defines what it means for instances to be equal. For example, a container object might define two containers as equal if their corresponding objects all respond YES to an isEqual: request. See the NSData, NSDictionary, NSArray, and NSString class specifications for examples of the use of this method.

If two objects are equal, they must have the same hash value. This last point is particularly important if you define isEqual: in a subclass and intend to put instances of that subclass into a collection. Make sure you also define hash in your subclass.

See Also 参照

Identifying and Comparing Objects