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

initWithCapacity:

Returns a counted set object initialized with enough memory to hold a given number of objects. 与えられた数のオブジェクトを保持するのに十分なメモリで初期化される計数集合オブジェクトを返します。

Declaration 宣言

- (instancetype)initWithCapacity:(NSUInteger)numItems;

Parameters パラメータ

numItems

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

Return Value 戻り値

A counted set object initialized with enough memory to hold numItems objects 初期化される計数集合オブジェクトは、numItems個数のオブジェクトを保持するのに十分なメモリを持ちます。

Discussion 議論

The method is the designated initializer for NSCountedSet. このメソッドは、NSCountedSetに対する指定イニシャライザです。

Note that the capacity is simply a hint to help initial memory allocation—the initial count of the object is 0, and the set still grows and shrinks as you add and remove objects. The hint is typically useful if the set will become large. 容量は単に初期メモリ割当を助けるための単なるヒントであることに注意してください — オブジェクトの初期計数は0です、そして集合は依然としてオブジェクトの追加および除去のたびに増大および縮小しますヒントは一般的に、その集合が大きくなるならば便利です。

See Also 参照

Initializing a Counted Set 計数集合を初期化する

Related Documentation 関連文書