init(doubleValue : Double, unit: Unit)
Overview 概要
An NSMeasurement
object represents a quantity and unit of measure. The NSMeasurement
class provides a programmatic interface to converting measurements into different units, as well as calculating the sum or difference between two measurements.
NSMeasurement
オブジェクトは、ある量と寸法単位を表します。NSMeasurement
クラスは、寸法を異なる単位へと変換することに対してプログラムインターフェイスを提供します、2つの寸法の間の差やその合計を計算することだけでなく。
NSMeasurement
objects are initialized with an Unit
object and double
value. NSMeasurement
objects are immutable, and cannot be changed after being created.
NSMeasurement
オブジェクトは、Unit
オブジェクトとdouble
値で初期化されます。NSMeasurement
オブジェクトは不変です、そして作成された後で変更されることはできません。
You can use the Measurement
class to create localized string representations of NSMeasurement
objects.
あなたは、Measurement
クラスを使って、NSMeasurement
オブジェクトのローカライズされた文字列表現を作成できます。
Important 重要
The Swift overlay to the Foundation framework provides the Measurement
structure, which bridges to the NSMeasurement
class. For more information about value types, see Working with Cocoa Frameworks in Using Swift with Cocoa and Objective-C (Swift 4.1).
FoundationフレームワークへのSwiftオーバーレイは、Measurement
構造体を提供します、それはNSMeasurement
クラスにブリッジします。値型についてのさらなる情報として、Working with Cocoa FrameworksをUsing Swift with Cocoa and Objective-C (Swift 4.1)で見てください。