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?

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

It's interpreting it as "\40" + "0"

The Java Language Specification describes this here.

OctalEscape:
    \ OctalDigit
    \ OctalDigit OctalDigit
    \ ZeroToThree OctalDigit OctalDigit

OctalDigit: one of
    0 1 2 3 4 5 6 7

ZeroToThree: one of
    0 1 2 3
link|improve this answer
3  
Personally, I think it would be better if it failed. It's an awfully cryptic distinction. – Jay Jul 25 '11 at 16:49
feedback

It falls under the construction of

\ OctalDigit OctalDigit

... followed by '0'. It doesn't fall under

\ ZeroToThree OctalDigit OctalDigit

... 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:

char x = '\377'; // Fine
char y = '\400'; // Error: unclosed character literal
link|improve this answer
If the "unclosed character literal" error message is from the official javac, it would fit nicely in a list of strange error messages. – Thorbjørn Ravn Andersen Jul 25 '11 at 17:34
@Thorbjørn: I don't think it's that strange. It's not restricted to this situation either: 'abc' would do it too. – Jon Skeet Jul 25 '11 at 17:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.