Initializer

init(stringLiteral:)

Creates an instance initialized to the given string value. 与えられた文字列値へ初期化されるインスタンスを作成します。

Declaration 宣言

init(stringLiteral value: String)

Discussion 解説

Do not call this initializer directly. It is used by the compiler when you initialize a string using a string literal. For example: このイニシャライザを直接に呼ばないでください。それは、あなたが文字列リテラルを使って文字列を初期化する時にコンパイラによって使われます。例えば:


let nextStop = "Clark & Lake"

This assignment to the nextStop constant calls this string literal initializer behind the scenes. nextStop定数への代入はこの文字列リテラルイニシャライザを舞台裏で呼びます。

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Infrequently Used Functionality 滅多に使われない機能性