I have been working on Java
from more than 8 years.
Last week, in a small meeting in my company, one of my colleague has asked me how exactly does Java Compiler
work? I was with no answer.
I tried explaining, like Java Compiler takes statements one by one and converts them to byte code that is not targeted to any OS
but to JVM
.
No one satisfied with that answer even me.
Now the main question is how exactly java compiler works. i.e. How many steps or stages or phases are there which will be done by the compiler in case of compiling a Java
file.
What exactly the Java's compiler
architecture?
What if there are multiple Java classes
in same .java file. Then how many classes will be compiled.
What if there are imports pointing to un-compiled Java classes? Then the un-compiled classes be compiled or ignored?
I googled for more than half a day and all are providing same answer as I gave to my colleagues.
But finally I found some useful tutorial here.
But the tutorial also covering not too in-depth and I could not visualize that tutorial.
Still I am not satisfied and eager to learn something more about this from you.
So if any one knows something more than me and the above blog, something by using which I can visualize what exactly the internal architecture of Java Compiler
please explain me.