Initializer

init(unicodeScalarLiteral:)

Creates a Unicode scalar with the specified value. 指定された値を使ってユニコードスカラーを作成します。

Declaration 宣言

init(unicodeScalarLiteral value: Unicode.Scalar)

Discussion 解説

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


let letterK: Unicode.Scalar = "K"
print(letterK)
// Prints "K"

In this example, the assignment to the letterK constant is handled by this initializer behind the scenes. この例において、letterK定数への代入は、このイニシャライザによって舞台裏で取り扱われます。

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Creating a Scalar スカラーを作成する