vote up 3 vote down star

I'm converting an algorithm I wrote in Java to Objective-C. In java the BigDecimal class handles base-10 numbers and can take the primitive double as a constructor arg. In Cocoa's NSDecimalNumber class, however, there is no direct way to construct an instance using a primitive double.

Currently I'm using this (smelly) hack:

    [NSDecimalNumber decimalNumberWithString:[NSString stringWithFormat:@"%1.38f", number]];

Is there a better way?

flag

3 Answers

vote up 7 vote down check

NSNumber, the superclass of NSDecimalNumber, has a +numberWithDouble: method. That's what you want.

link|flag
Wow, how'd I miss that. Thanks. – Mike Reedell Jan 4 at 23:32
vote up 3 vote down
[NSDecimalNumber numberWithDouble:myDouble]
link|flag
vote up -1 vote down

Calling [NSDecimalNumber numberWithDouble:someValue] will return an instance of NSNumber, so don't use that if you want a NSDecimalNumber.

link|flag
No, it won't. [NSDecimalNumber numberWithDouble:42.0] returns an NSDecimalNumber, whereas [NSNumber numberWithDouble:42.0] returns an NSCFNumber. – Peter Hosey Jul 4 at 1:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.