avalagne
avalagne

Reputation: 359

Grammar description for language Java

I'm writing a bachelor's thesis on "Analysis of the source code in Java applications". I have a few points that must include written part. One of them is "a brief description of the grammar and writing Java." Since this is a bachelor thesis, sources of information must be verified - the books, the official site of Java, etc. Unfortunately I can not find this information on the Java website (maybe I'm just casually looking for). If possible, it is easier for me to use online resources than books.

Can anyone advise me where I found this information verified? Of course we were in school in certain subjects taught either syntax or semantics of Java, but it does not seem so "official source".

Thank you all.

Upvotes: 3

Views: 357

Answers (4)

Daan Luttik
Daan Luttik

Reputation: 2855

Have you tried google scolar. Scolar only gives proper scientific results.

for instance you might like this article

Upvotes: 0

Joe2013
Joe2013

Reputation: 997

Use the official Java Specification from Oracle.

http://docs.oracle.com/javase/specs/jls/se7/html/jls-2.html

Upvotes: 5

IndoKnight
IndoKnight

Reputation: 1864

For static code analysis in Java you can find some automated tools.

Static Code Analysis Tools

Upvotes: 0

I think that Code Conventions for the Java Programming Language is good place to start.

Upvotes: 0

Related Questions