init()
Initializes a newly allocated mutable dictionary.
新しくアロケートされた可変辞書を初期化します。
init(sharedKeySet : Any)
Creates a mutable dictionary which is optimized for dealing with a known set of keys.
既知のキーの集合を取り扱うために初期化される可変辞書を作成します。
numItems
entries.
新しくアロケートされた可変辞書を初期化します、十分なメモリをアロケートすることでnumItems
登録項目を保持しています。
Availability 有効性
Technology
init(capacity numItems: Int
)
numItems
The initial capacity of the initialized dictionary. 初期化された辞書の初期容量。
An initialized mutable dictionary, which might be different than the original receiver. 初期化された可変辞書、それは元のレシーバとは異なるかもしれません。
Mutable dictionaries allocate additional memory as needed, so num
simply establishes the object’s initial capacity.
可変辞書は、追加のメモリを必要に応じてアロケートします、それでnum
は単にそのオブジェクトの初期容量を確立します。
This method is a designated initializer of NSMutable
.
このメソッドは、NSMutable
の指定イニシャライザです。
init()
init(sharedKeySet : Any)
+ dictionaryWithCapacity: