Protocol

ExpressibleByIntegerLiteral

A type that can be initialized with an integer literal. 整数リテラルで初期化できるある型。

Declaration 宣言

protocol ExpressibleByIntegerLiteral

Overview 概要

The standard library integer and floating-point types, such as Int and Double, conform to the ExpressibleByIntegerLiteral protocol. You can initialize a variable or constant of any of these types by assigning an integer literal. 標準ライブラリの整数および浮動小数点型、例えばIntおよびDoubleは、ExpressibleByIntegerLiteralプロトコルに準拠します。あなたは、それらの型のどれかの変数や定数を初期化することが、整数リテラルを割り当てることによって可能です。


// Type inferred as 'Int'
let cookieCount = 12


// An array of 'Int'
let chipsPerCookie = [21, 22, 25, 23, 24, 19]


// A floating-point value initialized using an integer literal
let redPercentage: Double = 1
// redPercentage == 1.0

Conforming to ExpressibleByIntegerLiteral ExpressibleByIntegerLiteralに準拠する

To add ExpressibleByIntegerLiteral conformance to your custom type, implement the required initializer. ExpressibleByIntegerLiteral準拠をあなたのあつらえの型に加えるには、必須イニシャライザを実装してください。

Topics 話題

Associated Types さまざまな関連型

Initializers イニシャライザ

Relationships 関係

Inherited By 継承される先

See Also 参照

Value Literals 値リテラル