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
可変辞書を作成して初期化する
- initWithCapacity:
Initializes a newly allocated mutable dictionary, allocating enough memory to hold numItems
entries.
新しくアロケートされた可変辞書を初期化します、十分なメモリをアロケートすることでnumItems
登録項目を保持しています。
- init
Initializes a newly allocated mutable dictionary.
新しくアロケートされた可変辞書を初期化します。
+ dictionaryWithSharedKeySet:
Creates a mutable dictionary which is optimized for dealing with a known set of keys.
既知のキーの集合を取り扱うために初期化される可変辞書を作成します。
Related Documentation
関連文書
+ dictionaryWithObjectsAndKeys:
Creates a dictionary containing entries constructed from the specified set of values and keys.
指定されたひと揃いの値とキーから構成される登録項目を含んでいる辞書を作成します。
+ dictionaryWithObjects:forKeys:
Creates a dictionary containing entries constructed from the contents of an array of keys and an array of values.
キーの配列と値の配列の内容から構成される登録項目を含んでいる辞書を作成します。
+ dictionaryWithContentsOfFile:
Creates a dictionary using the keys and values found in a file specified by a given path.
与えられたパスによって指定されるファイルで見つけられるキーと値を使って辞書を作成します。
+ dictionaryWithContentsOfURL:
Creates a dictionary using the keys and values found in a resource specified by a given URL.
与えられたURLによって指定されるリソース匂いて見つけられるキーと値を使って辞書を作成します。