JDK, JRE, and JVM are the three most important keywords which you often hear with Java Programming Language and even many of the Java Developers fails to get the difference between them or they think they are the same. At the end of this Java article, we will know the answers for the below questions. What is JVM in Java ? What is JIT Compiler in Java? What is JRE in … [Read more...]
JVM Architecture – Understanding JVM Internals
Every Java developer knows that bytecode will be executed by JRE (Java Runtime Environment). But many doesn't know the fact that JRE is the implementation of Java Virtual Machine (JVM), which analyzes the bytecode, interprets the code and executes it. It is very important as a developer we should know the Architecture of JVM, this enables us to write code more efficiently. In … [Read more...]