up vote 11 down vote favorite
share [g+] share [fb]

How can I determine if a Cocoa NSNumber represents NaN (not a number)?

This emerges, for example, when I parse a string that has an invalid (non-numeric) contents.

link|improve this question

feedback

6 Answers

up vote 10 down vote accepted

So, I found out that the class property [NSDecimalNumber notANumber] is just for this purpose. In some languages NaN != NaN, but this isn't the case in Cocoa.

link|improve this answer
feedback

As Mike Abdullah says, the natural way to represent a NaN in Cocoa is with nil, but [NSNumber numberWithDouble:NAN] does return a valid object. There is no NSNumber-specific way of detecting this, but the general way, isnan([foo doubleValue]), works. If you don’t like functions, you can stick it in a category.

link|improve this answer
hey guys: I'm pretty sure nil doesn't mean the same thing as NaN. Nil means no value at all. NaN is used to represent the result of certain floating point operations (dividing by zero, for example)... so really NaN IS a number.. It's the number "Not A Number"... – nielsbot Jul 19 '11 at 1:22
Yes, we know that. The point remains that nil is the natural way to represent things like a string with non-numeric constants, as in the OP’s example. – Ahruman Jul 19 '11 at 13:20
feedback

there is also the function isnan() i found it today.

link|improve this answer
feedback

For decimals, at least:

[[NSDecimalNumber notANumber] isEqualToNumber:myNumber]
link|improve this answer
feedback

Any Boolean expression with NaN will always return false. But how is that useful?

I was getting Nan back from locationInView: while handling some gestures in an iPhone app. And was very pleased to find that any Boolean expression with NaN will always return false. I put this to use liek below:

//I was using the UIPanGestureRecognizer, and seems that on TouchUp I would get Nan for the /location .x - .y - pretty reasonible since in this case the end of a touch doesnt have a location. CGPoint location = [gestureRecognizer locationInView:self];

if ( location.x != location.x || location.y != location.y ) { return; }

So then as long .x and .y or legitimate float values, of course they will never be not equal to there own value. BUT in the case of .x or .y being NaN, the comparison will be false. And I can safely avoid computations with Nan.

link|improve this answer
feedback

There isn't really such an object for NSNumber since if it's not a number, then, well, it's not an NSNumber. It's more usual to use a nil object to represent this.

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.