Instance Method インスタンスメソッド

formatted()

Generates a locale-aware string representation of a measurement using the default measurement format style. ある寸法のロケールを意識した文字列表現を省略時の寸法書式形式を使って生成します。

Declaration 宣言

func formatted() -> String
Available when UnitType conforms to Dimension. UnitTypeDimensionに準拠する時に利用可能。

Return Value 戻り値

A string, formatted according to the default style. ある文字列、省略時のスタイルにより書式設定されます。

Discussion 議論

Use the formatted() method to apply the default format style to a measurement, such as in the following example: formatted()メソッドを使って、省略時の書式設定スタイルをある寸法に適用してください、たとえば以下の例でのように:


let string = Measurement<UnitTemperature>(value: 38, unit: .celsius).formatted()
// For locale: en_US: 100.4°F

The default measurement format style uses an abbreviated unit width, the general usage type, and the default number format style. To customize the formatted measurement string, use the formatted(_:) method and include a Measurement.FormatStyle. 省略時の寸法書式設定スタイルは、abbreviated単位幅、一般使用の型、そして省略時の数値書式設定スタイルを使います。書式設定された寸法文字列をカスタマイズするには、formatted(_:)メソッドを使って、そしてMeasurement.FormatStyleを含めて下さい。

See Also 参照

Formatting a Measurement ある寸法を書式設定する