Possible Duplicate:
09 is not recognized where as 9 is recognized
Why is 08 considered an out of range int but 07 and below are not?
Why is 08 considered an out of range int but 07 and below are not? |
||||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
In Java and several other languages, an integer literal beginning with For single-digit numbers (other than For example:
Since octal literals are usually not what you want, you should always take care to never begin an integer literal with |
|||
|
|
|
Any number prefixed with a 0 is considered octal. Octal numbers can only use digits 0-7, just like decimal can use 0-9, and binary can use 0-1.
|
|||
|
|
|
From the Java specification:
|
|||
|
|
|
Leading zero means the value is in octal. 8 is not an octal digit, no more than 2 is valid in binary or G is valid in hexadecimal. |
|||
|
|