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