What is just-in-time(JIT) compilation?

compilation JIT just-in-time
0
Posted

What is just-in-time(JIT) compilation?

0

JIT is a compiliation technique where Java™ byte code is compiled once to machine code at runtime. This removes the interpetation overhead and allows for faster performance.

Related Questions