Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When did Java get a JIT compiler?

Tags:

java

history

When did Java first get a JIT compiler for production code?

like image 746
Jonathan Allen Avatar asked Mar 28 '09 03:03

Jonathan Allen


1 Answers

http://java.sun.com/features/2000/06/time-line.html

October 25, 1996 Sun announces first Just-In-Time (JIT) compiler for Java platform

Also, from wikipedia: Since JRE version 1.2, Sun's JVM implementation has included a just-in-time compiler instead of an interpreter. http://en.wikipedia.org/wiki/Java_(Sun)

like image 128
Gdeglin Avatar answered Sep 19 '22 17:09

Gdeglin