JIT
- tags
- Java, Programming Language Concept
- source
- DT-On Java 8
Java JIT
Partially or fully converts a program into native machine code,
so JVM interpretation is not needed and thus runs much faster.
Drawbacks
- Compile needs more time
- Result executable is larger which can cause paging
when loaded into memory and may slow down the program
Alternative Approach - Lazy Evaluation
Not JIT compile the code until it’s necessary.