init(decimal: Decimal)
init(string: String?)
init(string: String?, locale: Any?)
Availability 有効性
Technology
mantissa
The mantissa for the new decimal number object. 新しい10進数オブジェクトのための仮数。
exponent
The exponent for the new decimal number object. 新しい10進数オブジェクトのための指数。
flag
A Boolean value that specifies whether the sign of the number is negative. その数の符号が負かどうかを指し示すブール値。
An NSDecimal
object initialized using the given mantissa, exponent, and sign.
あるNSDecimal
オブジェクト、この与えられた仮数、指数、そして符号を使って初期化されます。
The arguments express a number in a type of scientific notation that requires the mantissa to be an integer. So, for example, if the number to be represented is 1.23, it is expressed as 123x10^–2—mantissa
is 123; exponent
is –2; and is
, which refers to the sign of the mantissa, is false
.
これら引数は、1つの数をある型の指数表記で表します、それはその指数が整数であることを要求します。それで、例えば、表されることになる数が1.23であるならば、それは123x10^–2のように表現されます — mantissa
は123です;exponent
は–2です;そしてis
、仮数の符号として参照されるものは、false
です。
init(decimal: Decimal)
init(string: String?)
init(string: String?, locale: Any?)
+ decimalNumberWithMantissa:exponent:isNegative: