Java Language Java Virtual Machine (JVM) These are the basics.

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Example

JVM is an abstract computing machine or Virtual machine that resides in your RAM. It has a platform-independent execution environment that interprets Java bytecode into native machine code. (Javac is Java Compiler which compiles your Java code into Bytecode)

Java program will be running inside the JVM which is then mapped onto the underlying physical machine. It is one of programming tool in JDK.

(Byte code is platform-independent code which is run on every platform and Machine code is platform-specific code which is run in only specific platform such as windows or linux; it depend on execution.)

Some of the components:-

  • Class Loder - load the .class file into RAM.
  • Bytecode verifier - check whether there are any access restriction violations in your code.
  • Execution engine - convert the byte code into executable machine code.
  • JIT(just in time) - JIT is part of JVM which used to improves the performance of JVM.It will dynamically compile or translate java bytecode into native machine code during execution time.

(Edited)



Got any Java Language Question?