Type Method 型メソッド

arrayWithCapacity:

Creates and returns an NSMutableArray object with enough allocated memory to initially hold a given number of objects. NSMutableArrayオブジェクトを、与えられた数のオブジェクトを最初から保持するのに十分にアロケートされたメモリで作成して返します。

Declaration 宣言

+ (instancetype)arrayWithCapacity:(NSUInteger)numItems;

Parameters パラメータ

numItems

The initial capacity of the new array. 新しい配列の初期容量。

Return Value 戻り値

A new NSMutableArray object with enough allocated memory to hold numItems objects. ある新しいNSMutableArrayオブジェクトで、numItems個のオブジェクトを保持するのに十分にアロケートされたメモリを持ちます。

Discussion 議論

Mutable arrays expand as needed; numItems simply establishes the object’s initial capacity. 可変配列は必要に応じて拡大します;numItemsは簡単にオブジェクトのもつ初期容量を確立します。

See Also 参照

Creating and Initializing a Mutable Array 可変Arrayを作成して初期化する