A variadic list of elements of the new array. 新しい配列の要素からなる可変長引数リスト。
Initializerinit(array
init(arrayLiteral:)
Creates an array from the given array literal.
指定された配列リテラルから配列を作成します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 6.3+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
init(arrayLiteral elements: Element...)
Parameters パラメータ
elements
Discussion 解説
Do not call this initializer directly. It is used by the compiler when you use an array literal. Instead, create a new array by using an array literal as its value. To do this, enclose a comma-separated list of values in square brackets. このイニシャライザを直接に呼ばないでください。それは、あなたが配列リテラルを使う時にコンパイラによって使われます。代わりに、配列リテラルをその値として使うことで新しい配列を作成してください。これをするには、コンマ区切りの値のリストを角括弧で囲んでください。
Here, an array of strings is created from an array literal holding only strings: ここでは、文字列の配列が、文字列だけを保持する配列リテラルから作成されます: