What is the data type for the number 9.6352 in Java?
Actually if I postfix the number with 'd' or 'f'. then it will be quite easy to decide. But if I leave it as alone, then which will be the default type of the number in java?
|
What is the data type for the number Actually if I postfix the number with 'd' or 'f'. then it will be quite easy to decide. But if I leave it as alone, then which will be the default type of the number in java? |
||||
|
Go check out the JLS section on floating point literals:
So it's a double if it's not suffixed. |
|||||
|
|
|
By default, any floating point data type without 'f' or 'F' postfixed, is considered as of type We can optionally add 'd' or 'D' at the end to mark it as a |
||||
|
|
Doubleis a class indeed,doubleis a primitive type – Mat Nov 22 '11 at 18:24