init(nilLiteral : ())
Creates an instance initialized with
nil
.
nil
で初期化されるインスタンスを作成します。
nil
.
nilリテラル、nil
を使って初期化できる型。
Availability
Technology
protocol ExpressibleByNilLiteral
nil
has a specific meaning in Swift—the absence of a value. Only the Optional
type conforms to Expressible
. Expressible
conformance for types that use nil
for other purposes is discouraged.
nil
はSwiftでは特別な意味を持ちます—値の不在。Optional
型だけがExpressible
に準拠します。nil
を他の目的に使う型のためのExpressible
準拠は、 推奨されません。
init(nilLiteral : ())
nil
.
nil
で初期化されるインスタンスを作成します。
protocol ExpressibleByIntegerLiteral
protocol ExpressibleByFloatLiteral
protocol ExpressibleByBooleanLiteral
true
and false
.
ブールリテラルのtrue
とfalse
を使って初期化できる型。