DEV Community

JEGADESHWARAN B
JEGADESHWARAN B

Posted on

JIT

Initial
JIT stands for Just-In-Time compiler.
It improves Java program performance.
It is part of JVM.

Depth
JIT converts bytecode to native machine code.
This reduces repeated interpretation.
Execution becomes faster.

More Depth
Interpreter executes line by line.
JIT compiles frequently used code.

Final
JIT is useful for long-running applications.

Top comments (0)