Character values between 0 and 255 can be denoted by octal literals from "\000" to "\377".
So shouldn't "\400" be a compile-time error? Eclipse does not complain, however... what's going on here?
|
Character values between 0 and 255 can be denoted by octal literals from So shouldn't
| |||
|
feedback
|
|
It's interpreting it as "\40" + "0" The Java Language Specification describes this here.
| |||||
feedback
|
|
It falls under the construction of
... followed by '0'. It doesn't fall under
... so it's not ambiguous or out of range. See section 3.10.6 of the Java Language Specification for more details. Note that you can't use it as a character literal for exactly this reason:
| |||||
feedback
|