Introduction to OOP Chapter 27: Implementation : next previous audio real text

Just In Time Compilers

A currently popular mix between compilers and interpreters.

Key idea, first time a method is executed, translate the bytecode into native machine code.

Gives fast execution time, pay penalty for translation (and analysis if you want to do a good job).

Currently very popular with Java systems.

Intro OOP, Chapter 27, Slide 23