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