Initializer
init(sharedKeySet:)
Creates a mutable dictionary which is optimized for dealing with a known set of keys.
既知のキーの集合を取り扱うために初期化される可変辞書を作成します。
Declaration
宣言
init(sharedKeySet keyset: Any)
Return Value
戻り値
A new mutable dictionary optimized for a known set of keys.
新しい可変の辞書、キーからなるある既知の集合に対して最適化されます。
Discussion
議論
Keys that are not in the key set can still be set in the dictionary, but that usage is not optimal.
そのキー集合の中にないキーは、依然として辞書の中に置かれます、しかしその使用は望ましくありません。
See Also
参照
Creating and Initializing a Mutable Dictionary
可変辞書を作成して初期化する
init(capacity: Int)
Initializes a newly allocated mutable dictionary, allocating enough memory to hold numItems
entries.
新しくアロケートされた可変辞書を初期化します、十分なメモリをアロケートすることでnumItems
登録項目を保持しています。
init()
Initializes a newly allocated mutable dictionary.
新しくアロケートされた可変辞書を初期化します。