| Author |
Java double data type problem
|
Rameshwar Soni
Ranch Hand
Joined: Feb 03, 2011
Posts: 246
|
|
Can anyone please explain me the output of the following program??? Thanks in advance
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12907
|
|
The notation for octal number literals, starting with 0, is only for integers.
020 is an integer literal, so it is interpreted as an integer with the decimal value 16, which you then assign to a double, so that the int gets converted to a double.
020.0 is not an octal floating-point literal. It's a decimal floating-point literal; that's why you see the value 20.0 (decimal) printed. A leading 0 when writing a floating-point literal does not mean that the notation is octal.
Look at section 3.10.1 and 3.10.2 of the Java Language Specification for the exact details.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
 |
|
|
subject: Java double data type problem
|
|
|