Initializer

init(capacity:)

Initializes a newly allocated mutable dictionary, allocating enough memory to hold numItems entries. 新しくアロケートされた可変辞書を初期化します、十分なメモリをアロケートすることでnumItems登録項目を保持しています。

Declaration 宣言

init(capacity numItems: Int)

Parameters パラメータ

numItems

The initial capacity of the initialized dictionary. 初期化された辞書の初期容量。

Return Value 戻り値

An initialized mutable dictionary, which might be different than the original receiver. 初期化された可変辞書、それは元のレシーバとは異なるかもしれません。

Discussion 議論

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

This method is a designated initializer of NSMutableDictionary. このメソッドは、NSMutableDictionaryの指定イニシャライザです。

See Also 参照

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

Related Documentation 関連文書