Monday, 5 December 2016

Complete flow of JVM compilation and run program.

Complete flow of JVM compilation and run program.

Complete flow of JVM.


1.   JVM loaded in the memory.
2.   Class loader invoked by the JVM.
3.   Test.class file loaded by the class loader.
4.   .class file provided to the byte code verifier.
5.   After the successful verification class loaded into the class area.
6.   main() method started.
7.   Frame of the main() method created.
8.   Execution of the instruction of the main() method.
      9. Execution of main() method completed and frame gets destroyed.

No comments:

Post a Comment