I am trying to beautify a program by displaying 1.2 if it is 1.2 and 1 if it is 1 problem is I have stored the numbers into the arraylist as doubles. How can I check if a Number is a double or int?
|
Well, you can use:
or even:
If the condition is true, i.e. the body of the Note that this will view 1.00000000001 as still a double - if these are values which have been computed (and so may just be "very close" to integer values) you may want to add some tolerance. Also note that this will start failing for very large integers, as they can't be exactly represented in EDIT: There are better ways of approaching this - using
Output:
|
|||||||||||||||||
|
|
I am C# programmer so I tested this in .Net. This should work in Java too (other than the lines that use the Console class to display the output.
|
|||
|
|
intvalues? – Peter Lawrey Sep 4 '11 at 7:56