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

containsObject:

Returns a Boolean value that indicates whether the hash table contains a given object. ハッシュテーブルがある与えられたオブジェクトを含むかどうかを指し示すデールチを返します。

Declaration 宣言

- (BOOL)containsObject:(ObjectType)anObject;

Parameters パラメータ

anObject

The object to test for membership in the hash table. ハッシュテーブルの中のメンバーシップに対してテストすることになるオブジェクト。

Return Value 戻り値

YES if the hash table contains anObject, otherwise NO. YES、もしハッシュテーブルがanObjectを含むならば、そうでなければNO

Discussion 議論

The equality test used depends on the personality option selected. For instance, choosing the NSPointerFunctionsObjectPersonality option will use isEqual: to determine equality. See NSPointerFunctionsOptions for more information on personality options and their corresponding equality tests. 使われる同等性テストは、選択されたパーソナリティオプションに依存します。インスタンスに対して、NSPointerFunctionsObjectPersonalityオプションを選ぶことは、isEqual:を使って同等性を判定することになります。NSPointerFunctionsOptionsをパーソナリティオプションとそれらの対応する同等性テストに関するさらなる情報のために見てください。

See Also 参照

Accessing Content 内容にアクセスする