What is JIT compiler ?
What is JIT compiler ?
So java source code (.java) file is converted to a byte code (.class) file with the help of javac compiler
Then jvm will convert this byte code into machine understandble code
When JIT is enabled -> jvm analyze the method calls in .class files and compiles them to get more efficient and native code -> it ensures prioritized method calls are optimized.
JVM will execute the optimized code directly instead of interpreting the code again -> and hence increasing the performance and speed of the execution.