Hi all
is there a way to find if the value parsed and returned by java.io.StreamTokenizer.nval (e.g. 200) was an integer or a floating number ?
Thanks
Edited:
I want to be able to know if the input was '200' or '200.0'.
|
|
Hi all
is there a way to find if the value parsed and returned by java.io.StreamTokenizer.nval (e.g. Thanks Edited: I want to be able to know if the input was '200' or '200.0'.
|
|||
|
|
|
|
I don't think it is possible with StringTokenizer, it's too old. You can use Scanner to do the job:
Documentation for the class is here |
||
|
|
|
|
As you are essentially trying to figure out if a
Of the two, I would use the |
|||
|
|
I would use the modulus operator:
This works because modulus works with floating point numbers in Java as well as integers. UPDATE: Since you specify a need to distinguish integers from doubles with zero-value decimal portions, I think you'll have to do something like the following:
So a more-complete function will look like:
|
||||||||
|