The value to create. 作成されることになる値。
Initializerinit(float
init(floatLiteral:)
Creates an instance initialized to the specified floating-point value.
指定された浮動小数点値に初期化されるインスタンスを作成します。
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(floatLiteral value: Float
)
Parameters パラメータ
value
Discussion 解説
Do not call this initializer directly. Instead, initialize a variable or constant using a floating-point literal. For example: このイニシャライザを直接に呼ばないでください。代わりに、浮動小数点リテラルを使って変数や定数を初期化してください。例えば:
In this example, the assignment to the x
constant calls this floating-point literal initializer behind the scenes.
この例において、x
定数への代入は、この浮動小数点リテラルイニシャライザを舞台裏で呼びます。
Note 注意
This documentation comment was inherited from Expressible
.
この文書化コメントは、Expressible
から引き継がれました。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Infrequently Used Functionality 滅多に使われない機能性
init()
Creates a value initialized to zero.
ゼロに初期化される値を作成します。
init(integerLiteral : Int64)
Creates an instance initialized to the specified integer value.
指定された整数値に初期化されるインスタンスを作成します。
init(integerLiteral : Float)
Creates an instance initialized to the specified integer value.
指定された整数値に初期化されるインスタンスを作成します。
func advanced(by: Float) -> Float
Returns a value that is offset the specified distance from this value.
指定の隔たりをこの値からオフセットされたある値を返します。
func distance(to: Float) -> Float
Returns the distance from this value to the given value, expressed as a stride.
この値から特定の値までの隔たりを返します、ストライドとして表されます。
func write<Target>(to: inout Target)
Writes a textual representation of this instance into the given output stream.
このインスタンスのテキスト表現を与えられた出力ストリームへ書き出します。