vote up 1 vote down star
1

Does anyone know of an accurate source for an (E)BNF for the Java language? Preferably, it would be from an authorative source, e.g. Sun.

Thanks.

flag

50% accept rate

4 Answers

vote up 3 vote down check

First google result :)
Though I can't speak for how up-to-date it might be.

link|flag
That's for Java 1.2, so it doesn't have generics, assertions, enhanced for-loops, etc. – mmyers Dec 9 '08 at 14:59
vote up 4 vote down

i believe the 3rd edition is the latest:

JLS 3rd edition

link|flag
vote up 1 vote down

I'm not sure what you want the spec for, but you may be interested to know that:

  • the parser in Javac is hand written. No parser generated tools.
  • there exists a number of repositories for popular parser generators grammars. Here is JavaCC and ANTLR.
link|flag
vote up 0 vote down

J Cooper: Wow, you're better at googling than me! I tried, but couldn't find anything.

link|flag
'java grammar specification' did the trick. Have fun! – J Cooper Dec 9 '08 at 14:10

Your Answer

Get an OpenID
or

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