| Author |
jvm vs java compiler
|
Rauhl Roy
Ranch Hand
Joined: Aug 01, 2006
Posts: 401
|
|
May I know what are the roles and responsibilities of JVM and compiler. thank and regards, rahul
|
 |
Abhinav Srivastava
Ranch Hand
Joined: Nov 19, 2002
Posts: 345
|
|
Compiler converts your source to byte code (class files), JVM executes this byte code. JVM actually converts the byte code instructions to native (OS specific) instructions. Hence you only need a JVM for every platform while your byte code can remain the same. That's the philosophy of Java, write once run anywhere. [ September 08, 2008: Message edited by: Abhinav Srivastava ]
|
 |
 |
|
|
subject: jvm vs java compiler
|
|
|