I unfortunately cant use expressions like Long.Nan as the string is actually a return value from a different C module. Is there a string I can pass to parseLong() to return an NaN ?
|
There is no Long.NaN -- you are confused. For Double.NaN, how about this:
(edit: and the obvious approach is to pass in any string that is an invalid double, e.g. the empty string or NaN) |
||||
|
|
|
There is no such thing as You might consider trying to get the bit pattern of |
|||
|
|
|
Long.Nan? That doesn't exist in Java. You only have Long.MIN_VALUE and Long.MAX_VALUE "Nan" as argument to |
|||
|
|
|
|
|||
|
|
|
Java only has a concept of NaN for floating point datatypes, not integer ones such as |
|||
|
|