> Hello,can you tell me the form of for-statement in AST in the Java
> compiler?
Technically speaking, this is compiler specific, but usually compilers
implement their ASTs so that they reflect the structure of the grammar
specified in the language specifications. See
http://java.sun.com/docs/books/jls/third_edition/html/statements.html#14.14
- Oliver