Instance Method
インスタンスメソッド
objectEnumerator
Returns an enumerator object that lets you access each object in the hash table.
あなたにハッシュテーブルの中の各オブジェクトにアクセスさせる列挙子オブジェクトを返します。
Return Value
戻り値
An enumerator object that lets you access each object in the hash table.
あなたにハッシュテーブルの中の各オブジェクトにアクセスさせる列挙子オブジェクト。
Discussion
議論
The following code fragment illustrates how you can use this method.
以下のコード断片は、どのようにあなたがこのメソッドを使用できるかを例示します。
NSEnumerator *enumerator = [myHashTable objectEnumerator];
id value;
while ((value = [enumerator nextObject])) {
}
Special Considerations
特別な注意事項
It is more efficient to use the fast enumeration protocol (see NSFastEnumeration
).
より効率的なのは、高速列挙プロトコルを使うことです(NSFastEnumeration
を見てください)。
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.
ハッシュテーブルがある与えられたオブジェクトを含むかどうかを指し示すデールチを返します。
- member:
Determines whether the hash table contains a given object, and returns that object if it is present
ハッシュテーブルがある与えられたオブジェクトを含むかどうか判定します、そしてそれが存在するならばそのオブジェクトを返します。