Initializer

init(extendedGraphemeClusterLiteral:)

Creates a character with the specified value. 指定された値でひとつの文字を作成します。

Declaration 宣言

init(extendedGraphemeClusterLiteral value: Character)

Discussion 解説

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


let oBreve: Character = "o\u{306}"
print(oBreve)
// Prints "ŏ"

The assignment to the oBreve constant calls this initializer behind the scenes. oBreve定数への代入は、このイニシャライザを舞台裏で呼びます。

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

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