0
what is the difference between JVM and JIT??
2 Respuestas
+ 1
When you run a Java program, the Java Virtual Machine (JVM) interprets the bytecode you compiled. Just-In-Time (JIT) compilation can be used by the JVM to compile small parts of the program at execution time into native code in order to get better perfs.
0
thanx Zen