Type Method 型メソッド

orderedSetWithCapacity:

Creates and returns an mutable ordered set with a given initial capacity. 与えられた初期容量を持つ可変の順序集合を作成して返します。

Declaration 宣言

+ (instancetype)orderedSetWithCapacity:(NSUInteger)numItems;

Parameters パラメータ

numItems

The initial capacity of the new ordered set. 新しい順序集合の初期容量。

Return Value 戻り値

A mutable ordered set with initial capacity to hold numItems members. ある可変の順序集合、numItemsメンバを保持する初期容量を持ちます。

Discussion 議論

Mutable ordered sets allocate additional memory as needed, so numItems simply establishes the set’s initial capacity. 可変の順序集合は、追加のメモリを必要に応じてアロケートします、それでnumItemsは単にその集合の初期容量を確立します。

See Also 参照

Creating a Mutable Ordered Set 可変の順序集合を作成する