Jave JIT compiler compiles at compile time or runtime ?

Posted by Tony on Stack Overflow See other posts from Stack Overflow or by Tony
Published on 2010-06-15T07:09:29Z Indexed on 2010/06/15 7:12 UTC
Read the original article Hit count: 222

Filed under:

From wiki: In computing, just-in-time compilation (JIT), also known as dynamic translation, is a technique for improving the runtime performance of a computer program.

So I guess JVM has another compiler, not javac, that only compiles bytecode to machine code at runtime, while javac compiles sources to bytecode,is that right?

© Stack Overflow or respective owner

Related posts about java