Type Method 型メソッド

dictionaryWithCapacity:

Creates and returns a mutable dictionary, initially giving it enough allocated memory to hold a given number of entries. ある可変辞書を作成して返します、初めからそれはある与えられた数の登録項目を保持するのに十分にアロケートされたメモリを与えられています。

Declaration 宣言

+ (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;

Parameters パラメータ

numItems

The initial capacity of the new dictionary. 新しい辞書の初期容量。

Return Value 戻り値

A new mutable dictionary with enough allocated memory to hold numItems entries. numItems登録項目を保持するのに十分にアロケートされたメモリをもつ新しい可変辞書。

Discussion 議論

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

See Also 参照

Creating and Initializing a Mutable Dictionary 可変辞書を作成して初期化する

Related Documentation 関連文書