Instance Method インスタンスメソッド

initWithPointerFunctions:capacity:

Returns a hash table initialized with the given functions and capacity. 与えられた関数と要領で初期化されたハッシュテーブルを返します。

Declaration 宣言

- (instancetype)initWithPointerFunctions:(NSPointerFunctions *)functions 
                                capacity:(NSUInteger)initialCapacity;

Parameters パラメータ

functions

The pointer functions for the new hash table. 新しいハッシュテーブルに対するポインタ関数。

initialCapacity

The initial capacity of the hash table. ハッシュテーブルの初期容量。

Return Value 戻り値

A hash table initialized with the given functions and capacity. 与えられた関数と容量で初期化されたハッシュテーブル。

Discussion 議論

Hash tables allocate additional memory as needed, so initialCapacity simply establishes the object’s initial capacity. ハッシュテーブルは、追加のメモリを必要に応じてアロケートします、それでinitialCapacityは単にオブジェクトのもつ初期容量を確立します。

See Also 参照

Initialization 初期化