Internal Analysis of Java "Hello World" Program



When we compile a java program. It is converted to a system specific bytecode format by the javac compiler. You can see the MyFirstJavaProgram.class file generated in the same folder.

Using java command, we can execute this class file and run the program.


Advertisements