2010/12/02

What's the JVM?

JVM means Java Virtual Machine which is the environment where we run computer programs written in Java language. Java was conceived with the concept of WORA: "write once, run anywhere". This is done using the Java Virtual Machine.

A Java program is compiled into a standardized portable binary format (a bytecode file), which typically comes in the form of .class files. The JVM executes the .class files, interpreting the commands to the operational systems.

You may find more info at:

No comments:

Post a Comment