Monday, September 30, 2013

Internal Details of Hello Java Program

Internal Details of Hello Java Program

  1. Internal Details of Hello Java
In the previous page, we have learned about the first program, how to compile and how to run the first java program. Here, we are going to learn, what happens while compiling and running the java program. Moreover, we will see some quesitons based on the first program.

What happens at compile time?

At compile time, java file is compiled by Java Compiler (It does not interact with OS) and converts the java code into byte-code.
compilation of simple java program







What happens at runtime?

At runtime, following steps are performed:

what happens at runtime when simple java program runs

Classloader: is the subsystem of JVM that is used to load class files.
Bytecode Verifier: checks the code fragments for illegal code that can violate accesss right to objects.
Interpreter: read bytecode stream then execute the instructions.



Q)Can you save a java source file by other name than the class name?

Yes, like the figure given below illustrates:
how to save simple java program by another name
To compile:javac Hard.java
To execute:java Simple



Q)Can you have multiple classes in a java source file?


Yes, like the figure given below illustrates:
how to contain multiple class in simple java program


0 comments:

Comment here / Ask your Query !!