Instance Method
インスタンスメソッド
member:
Determines whether the hash table contains a given object, and returns that object if it is present
ハッシュテーブルがある与えられたオブジェクトを含むかどうか判定します、そしてそれが存在するならばそのオブジェクトを返します。
Declaration
宣言
- (ObjectType)member:(ObjectType)object;
Parameters
パラメータ
object
The object to test for membership in the hash table.
ハッシュテーブルの中のメンバーシップに対してテストすることになるオブジェクト。
Return Value
戻り値
If object
is a member of the hash table, returns object
, otherwise returns nil
.
object
がハッシュテーブルのメンバならば、object
を返します、そうでなければnil
を返します。
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
内容にアクセスする
anyObject
One of the objects in the hash table.
ハッシュテーブルの中のオブジェクトの1つ。
allObjects
The hash table’s members.
ハッシュテーブルのもつメンバー。
setRepresentation
A set that contains the hash table’s members.
ハッシュテーブルのメンバーを含んでいる集合。
count
The number of elements in the hash table.
ハッシュテーブルの中の要素の数。
- containsObject:
Returns a Boolean value that indicates whether the hash table contains a given object.
ハッシュテーブルがある与えられたオブジェクトを含むかどうかを指し示すデールチを返します。
- objectEnumerator
Returns an enumerator object that lets you access each object in the hash table.
あなたにハッシュテーブルの中の各オブジェクトにアクセスさせる列挙子オブジェクトを返します。