Type Method 型メソッド

setWithCapacity:

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

Declaration 宣言

+ (instancetype)setWithCapacity:(NSUInteger)numItems;

Parameters パラメータ

numItems

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

Return Value 戻り値

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

Discussion 議論

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

See Also 参照

Creating a mutable set 可変集合を作成する

Related Documentation 関連文書