JIT vs Interpreters

前端 未结 7 1194
一生所求
一生所求 2021-01-29 21:03

I couldn\'t find the difference between JIT and Interpreters.

Jit is intermediary to Interpreters and Compilers. During runtime, it converts byte code to machine code (

相关标签:
7条回答
  • 2021-01-29 21:54

    A JIT Compiler translates byte code into machine code and then execute the machine code.

    Interpreters read your high level language (interprets it) and execute what's asked by your program. Interpreters are normally not passing through byte-code and jit compilation.

    But the two worlds have melt because numerous interpreters have take the path to internal byte-compilation and jit-compilation, for a better speed of execution.

    0 讨论(0)
提交回复
热议问题