0
I am so much confused betweenm JVM and JRE .plz expalain the difference.
2 odpowiedzi
+ 4
The Java Virtual machine (JVM) is the virtual machine that run the Java bytecodes. The JVM doesn't understand Java source code, that's why you compile your *.java files to obtain *.class files that contain the bytecodes understandable by the The JVM.
The Java Runtime Environment (JRE) provides the libraries, the Java Virtual Machine, and other components to run applets and applications written in the Java programming language as we can see with our eye.
0
JVM is an abstract which provides the runtime environment for the java byte code to run
JRE is the implementation of JVM