- initWithCapacity:
Returns an initialized mutable set with a given initial capacity.
与えられた初期容量を持つ初期化された可変の集合を返します。
- init
Initializes a newly allocated set.
新しくアロケートされた集合を初期化します
Availability 有効性
Technology
+ (instancetype)setWithCapacity:(NSUInteger
)numItems;
numItems
The initial capacity of the new set. 新しい集合の初期容量。
A mutable set with initial capacity to hold num
members.
ある可変の集合、num
メンバを保持する初期容量を持ちます。
Mutable sets allocate additional memory as needed, so num
simply establishes the object’s initial capacity.
可変集合は、追加のメモリを必要に応じてアロケートします、それでnum
は単にそのオブジェクトの初期容量を確立します。
- initWithCapacity:
- init
+ set
+ setWithObjects:count: