What are the differences between a Just-in-Time-Compiler and an Interpreter?

后端 未结 8 1800
既然无缘
既然无缘 2020-12-12 17:12

What are the differences between a Just-in-Time-Compiler and an Interpreter, and are there differences between the .NET and the Java JIT compiler?

8条回答
  •  一整个雨季
    2020-12-12 17:48

    JIT compiler produces binary machine codes translating block source code. Interpreter translates line by line.

提交回复
热议问题