I was messing around with storing floats and doubles using NSUserDefaults for use in an iPhone application, and I came across some inconsistencies in how the precision works with them, and how I understood it works.

This works exactly as I figured:

{
    NSString *key = @"OneLastKey";
    [PPrefs setFloat:235.1f forKey:key];
    GHAssertFalse([PPrefs getFloatForKey:key] == 235.1, @"");
    [PPrefs removeObjectForKey:key];
}

However, this one doesn't:

{
    NSString *key = @"SomeDoubleKey";
    [PPrefs setDouble:234.32 forKey:key];
    GHAssertEquals([PPrefs getDoubleForKey:key], 234.32, @"");
    [PPrefs removeObjectForKey:key];
}

This is the output GHUnit gives me:

'234.320007324' should be equal to '234.32'. 

But, if I first cast the double to a float, and then to a double it works without fail:

{
    NSString *key = @"SomeDoubleKey";
    [PPrefs setDouble:234.32 forKey:key];
    GHAssertEquals([PPrefs getDoubleForKey:key], (double)(float)234.32, @"");
    [PPrefs removeObjectForKey:key];
}

I was under the assumption that numbers entered without an 'f' at the end were already considered doubles. Is this incorrect? If so, why does casting to a float and then double work correctly?

link|improve this question

feedback

2 Answers

This relates to precision, and this answer should clear things up.

link|improve this answer
You are correct in that this relates to precision, but as far as I can tell, I am comparing a double (234.32) to another double with the same value (234.32). Even though both of these aren't equal to 234.32, they should both have the same double representation. – FreeAsInBeer Mar 23 '11 at 16:51
@Bishop: So you're saying that if I instantiate two doubles with the same value that I cannot be sure they will be equal? – FreeAsInBeer Mar 23 '11 at 17:04
Thanks for your time. – FreeAsInBeer Mar 23 '11 at 17:32
I stand corrected as to differing results with FPUs, I must have been thinking about epsilon() (see here) with respect to floating-point comparisons and have deleted the comment. Sorry for the confusion! – Matt Bishop Mar 23 '11 at 18:32
feedback
up vote 1 down vote accepted

Solved! Turns out my framework method +(void)setDouble:(double)value forKey:(NSString*)key was actually defined as +(void)setDouble:(float)value forKey:(NSString*)key. The value passed was a double but was converted to a float for use in the method. A simple copy and paste issue. Too bad the Objective-C compiler didn't at least throw up a warning like it seems to do for everything else...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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