The value of the new instance. 新しいインスタンスのための値。
Initializerinit(boolean
init(booleanLiteral:)
Creates an instance initialized to the specified Boolean literal.
指定されたブールリテラルに初期化されるインスタンスを作成します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 6.1+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
init(booleanLiteral value: Bool
)
Parameters パラメータ
value
Discussion 解説
Do not call this initializer directly. It is used by the compiler when you use a Boolean literal. Instead, create a new Bool
instance by using one of the Boolean literals true
or false
.
このイニシャライザを直接に呼ばないでください。それは、あなたがブールリテラルを使う時にコンパイラによって使われます。代わりに、新しいBool
インスタンスをブールリテラルのtrue
またはfalse
のうち1つを使って作成してください。
In this example, both assignments to the printed
variable call this Boolean literal initializer behind the scenes.
この例において、printed
変数への代入は両方ともこのブールリテラルイニシャライザを舞台裏で呼びます。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Infrequently Used Intializers 滅多に使われないイニシャライザ
init()
Creates an instance initialized to
false
.
false
に初期化されるインスタンスを作成します。