var symbol: String
Overview 概要
Each instance of an Unit
subclass consists of a symbol
, which can be used to create string representations of NSMeasurement
objects with the Measurement
class.
Unit
サブクラスの各インスタンスは、あるsymbol
からなります、それはNSMeasurement
オブジェクトの文字列表現をMeasurement
クラスで作成するために使われることができます。
The Dimension
subclass is an abstract class that represents a dimensional unit, which can be converted into different units of the same type. The Foundation framework provides several concrete Dimension
subclasses to represent the most common physical quantities, including mass, length, duration, and speed.
Dimension
サブクラスは、ある次元単位を表す抽象クラスです、それは同じ型の異なる単位へと変換されることができます。Foundationフレームワークは、いくつかの具象Dimension
下位クラスを提供して、質量、長さ、期間、そして速度を含む、多くの一般的な物理量を表します。
Subclassing Notes サブクラス作成の注意
NSUnit
is intended for subclassing. For dimensional units, you should use one of the Apple provided Dimension
subclasses listed in Table 1, or create a custom subclass of Dimension
. You can create a direct subclass of NSUnit
to represent a custom dimensionless unit, such as a count, score, or ratio.
NSUnit
は、サブクラスを作ることを意図されます。次元単位それらに対して、あなたは表 1で一覧にされるApple提供のDimension
サブクラスを使う、またはDimension
のあつらえのサブクラスを作成するべきです。あなたは、NSUnit
の直接のサブクラスを作成して、あるあつらえの次元なし単位を表せます、たとえばある計数、得点、または比率など。