On 6 Jul 2009, at 3:35 PM, Eric Hermanson wrote:

Example:
NSDecimalNumber *number = [NSDecimalNumber decimalNumberWithMantissa:2200LL exponent:-2 isNegative:NO];

This results in a decimal number that is represented both internally, and as a string, as
        22

instead of the desired
        22.00

Because of the functionality I am trying to achieve, I need to know the difference between 22 and 22.00, but I can't figure out how to get NSDecimalNumber to retain the trailing zeros. Does anyone have advice?

NSDecimalNumber just keeps numerical values, not their history. If two numbers, _as numbers_, are equal, you should expect the normalized internal representations to be identical. 22.00 == 22 .

If you need to preserve context, you'll have to keep it yourself in another data structure (possibly one that wraps an NSDecimalNumber).

        — F


--
Fritz Anderson -- Xcode 3 Unleashed: Now in its second printing -- <http://x3u.manoverboard.org/ >

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to