defaultDecimalNumberHandler
NSDecimalNumberHandler
.
NSDecimalNumberHandler
の省略時のインスタンスを返します。
NSDecimalNumberHandler
object with customized behavior.
あつらえの挙動をもつNSDecimalNumberHandler
オブジェクトを返します。
Availability 有効性
Technology
+ (instancetype)decimalNumberHandlerWithRoundingMode:(NSRoundingMode
)roundingMode
scale:(short)scale
raiseOnExactness:(BOOL)exact
raiseOnOverflow:(BOOL)overflow
raiseOnUnderflow:(BOOL)underflow
raiseOnDivideByZero:(BOOL)divideByZero;
roundingMode
The rounding mode to use. There are four possible values: NSRound
, NSRound
, NSRound
, and NSRound
.
使用する丸めモード。4つの可能な値があります:NSRound
、NSRound
、NSRound
、そしてNSRound
。
scale
The number of digits a rounded value should have after its decimal point. 丸められた値がそれの小数点の後に持つべき桁数。
raiseOnExactness
If YES
, in the event of an exactness error the handler will raise an exception, otherwise it will ignore the error and return control to the calling method.
YES
ならば、正確さエラーのイベントにおいてこのハンドラは例外を引き起こします、そうでなければそれはエラーを無視します、そして制御を呼出し側メソッドに返します。
raiseOnOverflow
If YES
, in the event of an overflow error the handler will raise an exception, otherwise it will ignore the error and return control to the calling method
YES
ならば、オーバーフローエラーのイベントにおいてこのハンドラは例外を引き起こします、そうでなければそれはエラーを無視します、そして制御を呼出し側メソッドに返します。
raiseOnUnderflow
If YES
, in the event of an underflow error the handler will raise an exception, otherwise it will ignore the error and return control to the calling method
YES
ならば、アンダーフローエラーのイベントにおいてこのハンドラは例外を引き起こします、そうでなければそれはエラーを無視します、そして制御を呼出し側メソッドに返します。
raiseOnDivideByZero
If YES
, in the event of a divide by zero error the handler will raise an exception, otherwise it will ignore the error and return control to the calling method
YES
ならば、ゼロでの除算エラーのイベントにおいてこのハンドラは例外を引き起こします、そうでなければそれはエラーを無視します、そして制御を呼出し側メソッドに返します。
An NSDecimal
object with customized behavior.
あつらえの挙動をもつNSDecimal
オブジェクト。
See the NSDecimal
protocol specification for a complete explanation of the possible behaviors.
NSDecimal
プロトコル仕様を可能な挙動の完全な説明として見てください。
defaultDecimalNumberHandler
NSDecimalNumberHandler
.
NSDecimalNumberHandler
の省略時のインスタンスを返します。