Definition of Just In Time
What is meant by Just In Time in Java (JIT)?
Answers
Answered by
1
In Java the compiled code of a program written in Java language is converted into an intermediate byte code, which is platform independent.
The JIT (Just In Time) compiler converts the intermediate bytecode into executable code for the processor at run time. This is done by java runtime (J Runtime Environment) of the Java platform.
The JIT (Just In Time) compiler converts the intermediate bytecode into executable code for the processor at run time. This is done by java runtime (J Runtime Environment) of the Java platform.
Similar questions