Initializer

init(capacity:)

Returns an array, initialized with enough memory to initially hold a given number of objects. ある配列を返します、与えられた数のオブジェクトを当初から格納するのに十分なメモリで初期化されます。

Declaration 宣言

init(capacity numItems: Int)

Parameters パラメータ

numItems

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

Return Value 戻り値

An array initialized with enough memory to hold numItems objects. The returned object might be different than the original receiver. 初期化される配列オブジェクトは、numItems個数のオブジェクトを保持するのに十分なメモリを持ちます。返されるオブジェクトは、オリジナルのレシーバとは異なるかもしれません。

Discussion 議論

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

This method is a designated initializer. このメソッドは、指定イニシャライザです。

See Also 参照

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

Related Documentation 関連文書