Instance Method
インスタンスメソッド
initWithCapacity:
Returns a counted set object initialized with enough memory to hold a given number of objects.
与えられた数のオブジェクトを保持するのに十分なメモリで初期化される計数集合オブジェクトを返します。
Declaration
宣言
- (instancetype)initWithCapacity:(NSUInteger
)numItems;
Parameters
パラメータ
numItems
The initial capacity of the new counted set.
新しい計数集合の初期容量。
Return Value
戻り値
A counted set object initialized with enough memory to hold numItems
objects
初期化される計数集合オブジェクトは、numItems
個数のオブジェクトを保持するのに十分なメモリを持ちます。
Discussion
議論
The method is the designated initializer for NSCountedSet
.
このメソッドは、NSCountedSet
に対する指定イニシャライザです。
Note that the capacity is simply a hint to help initial memory allocation—the initial count of the object is 0
, and the set still grows and shrinks as you add and remove objects. The hint is typically useful if the set will become large.
容量は単に初期メモリ割当を助けるための単なるヒントであることに注意してください — オブジェクトの初期計数は0
です、そして集合は依然としてオブジェクトの追加および除去のたびに増大および縮小しますヒントは一般的に、その集合が大きくなるならば便利です。
See Also
参照
Initializing a Counted Set
計数集合を初期化する
- initWithArray:
Returns a counted set object initialized with the contents of a given array.
与えられた配列の内容で初期化される計数集合オブジェクトを返します。
- initWithSet:
Returns a counted set object initialized with the contents of a given set.
与えられた集合の内容で初期化される計数集合オブジェクトを返します。
Related Documentation
関連文書
+ setWithCapacity:
Creates and returns a mutable set with a given initial capacity.
与えられた初期容量を持つ可変の集合を作成して返します。
- initWithCapacity:
Returns an initialized mutable set with a given initial capacity.
与えられた初期容量を持つ初期化された可変の集合を返します。