Initializer

init(stringInterpolation:)

Creates a new instance from an interpolated string literal. 新しいインスタンスを補間文字列リテラルから作成します。

Declaration 宣言

init(stringInterpolation: DefaultStringInterpolation)
Available when StringInterpolation is DefaultStringInterpolation. StringInterpolationDefaultStringInterpolationである時に利用可能です。

Discussion 解説

Don’t call this initializer directly. It’s used by the compiler when you create a string using string interpolation. Instead, use string interpolation to create a new string by including values, literals, variables, or expressions enclosed in parentheses, prefixed by a backslash (\()). このイニシャライザを直に呼ばないでください。それは、あなたが文字列を文字列補完を使って作成する時に、コンパイラによって使われます。代わりに、文字列補間を使って、バックスラッシュ\()を前に置いた丸括弧に囲まれた値、リテラル、変数、または式を含めることで、新しい文字列を作成してください。


let price = 2
let number = 3
let message = """
              If one cookie costs \(price) dollars, \
              \(number) cookies cost \(price * number) dollars.
              """
// message == "If one cookie costs 2 dollars, 3 cookies cost 6 dollars."