JIT compilers are used to convert java byte-code into native machine language. And as far as I know, there is no program which can directly convert java byte-code into binary file such as .exe files. So why JIT compilers can’t be used to produce binary from the byte-code?
JIT compilers are used to convert java byte-code into native machine language. And as
Share
The JIT compiler, compiles the code dynamically.
A static compiler cannot do these things.