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

objectEnumerator

Returns an enumerator object that lets you access each object in the set once, independent of its count. ある列挙子オブジェクトを返します、それはあなたに集合の中の各オブジェクトに一度だけアクセスを、それの計数から独立して行わせます。

Declaration 宣言

- (NSEnumerator<ObjectType> *)objectEnumerator;

Return Value 戻り値

An enumerator object that lets you access each object in the set once, independent of its count. ある列挙子オブジェクト、それはあなたに集合の中の各オブジェクトに一度だけアクセスを、それの計数から独立して行わせます。

Discussion 議論

If you add a given object to the counted set multiple times, an enumeration of the set will produce that object only once. あなたがある与えられたオブジェクトを計数集合に複数回加えるならば、その集合のある列挙はそのオブジェクトをただ一度だけ生み出します。

You shouldn’t modify the set during enumeration. If you intend to modify the set, use the allObjects method to create a “snapshot,” then enumerate the snapshot and modify the original set. あなたは、列挙の間にその集合を修正すべきではありません。あなたがその集合を修正するつもりならば、allObjectsメソッドを使って “スナップショット” を作成してください、それからスナップショットを列挙して、元の集合を修正してください。

See Also 参照

Examining a Counted Set ある計数集合を調べる

Related Documentation 関連文書