This Q is for verification.
JDK 8 seems to be processing octal when the literal value is preceeded with a 0:
System.out.print(011);
printing 9, and
System.out.print(08);
giving a checked error.
This isn't in the docs-- yet(?)
Is this new in jdk8? if so - are there some details in case of octal, additional to those in HEX and binary?
TIA
//=============================
EDIT:
The Q is about JDK processing octal-- since when. the dosc showing only HEX & binary.
that 2nd code line is there to show it's octal JDK doing when the value is preceeded by a 0.