Instance Method
インスタンスメソッド
initWithCapacity:
Initializes a newly allocated mutable dictionary, allocating enough memory to hold numItems
entries.
新しくアロケートされた可変辞書を初期化します、十分なメモリをアロケートすることでnumItems
登録項目を保持しています。
Declaration
宣言
- (instancetype)initWithCapacity:(NSUInteger
)numItems;
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
可変辞書を作成して初期化する
+ dictionaryWithCapacity:
Creates and returns a mutable dictionary, initially giving it enough allocated memory to hold a given number of entries.
ある可変辞書を作成して返します、初めからそれはある与えられた数の登録項目を保持するのに十分にアロケートされたメモリを与えられています。
- init
Initializes a newly allocated mutable dictionary.
新しくアロケートされた可変辞書を初期化します。
+ dictionaryWithSharedKeySet:
Creates a mutable dictionary which is optimized for dealing with a known set of keys.
既知のキーの集合を取り扱うために初期化される可変辞書を作成します。