Saturday, March 28, 2015

Java compiler | How Java Program Runs | Java Virtual Machine


The Java program runs in two steps:-
  1. First the source code is compiled using java compiler known as "JAVAC". It converts the source code(human-readable) into Byte Code which is not human-readable.This byte code has .class file extension.
  1. Next this byte code id handled by JVM which is specific for a system. JVM converts this byte code into the output which is shown on standard output device that is screen.

0 comments:

Post a Comment