- valueFromBaseUnitValue:
For a given unit, returns the specified value of the base unit in terms of that unit.
ある与えられた単位に対して、基本単位の指定の値を、その単位に換算して返します。
Availability 有効性
Technology
- (double)baseUnitValueFromValue:(double)value;
value
The value in terms of a given unit. 与えられた単位の表現での値。
The value in terms of the base unit. 基本単位の表現での値。
This method takes a value in a particular unit and returns the result of converting it into the base unit of that unit’s dimension. For example, a converter for the miles unit calling this method, passing 1
to the value
parameter, results in 1609
(1 mi = 1609.34 m).
このメソッドは、特定の単位でのある値を取り、それをその単位のもつ次元の基本単位へと変換する結果を返します。例えば、マイル単位に対するある変換器がこのメソッドを呼び出して、1
をvalue
パラメータに渡すことは、1609
(1 mi = 1609.34 m)という結果になります。
- valueFromBaseUnitValue: