I am very new to Java language. I want to know that after the compilation of any *.java program,We get *.class file. Then we execute this class file using the tool "java classfilename".
Now I want to know what actually happens intenally.
Thanks.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35223
7
posted
0
You mean, how the Java Virtual Machine (JVM) interprets and/or compiles the class file into a running program? Head over to java.sun.com and search for "JVM"; that will bring up some articles and links that will get you started. If you are REALLY interested in the JVM, you might even study the JVM specification (also on java.sun.com).