JDK (Java Development Kit)
JDK (Java Development Kit) is a superset of JRE (Java Runtime Environment), it contains everything that JRE has along with development tools such as compiler, debugger, etc.

See Also: Java: Program Execution
JRE (Java Runtime Environment)
JRE (Java Runtime Environment) provides the environment in which the JVM (Java Virtual Machine) runs. JRE contains JVM, class libraries, and other files excluding development tools such as compiler and debugger.
It means, you can run the code in JRE but you can’t develop and compile the code in JRE.
JVM (Java Virtual Machine)
JVM (Java Virtual Machine) runs the program by using class, libraries, and files provided by JRE. JVM able to run a program written in Java and other languages also that are compiled to Java byte code. For Example Jython, Jruby, Closure, Apache, Groovy, Kotlin, etc.
Now discussed terminology used for JVM.
Class Loader
The class loader reads the .class file and saves the byte code in the method area.
Method Area
Method area holds class level information of .class file. JVM jave only one method area which is shared among all the classes.
Heap
Heap is a JVM memory part where objects are allocated. JVM creates an object for each .class Class file.
Stack
The stack is JVM memory part but unlike Heap, it is used for storing temporary variables i.e method parameters.
PC Registers
PC Registers use to keeps the track of which instruction has been executed and which one is going to be executed. Because instructions are executed by threads, each thread has a separate PC register.
JIT Compiler
The JIT also called a Just-In-Time compiler. It used when a method is called. The JIT compiles the bytecode of that called method into native machine code. When a method has been compiled in native machine code, the JVM calls the compiled code of that method directly instead of interpreting it.
Native Method Stack
A native method used to access the runtime data areas of the virtual machine.
Native Method interface
It enables java code to call or be called by native applications wiritten in C or C++. Native applications are programs in low-level language that is specific to the hardware and OS of a system.
Garbage collection
Garbage Collection use for automatic memory management by JVM. It destroys unreferenced objects from Heap so that allocates more memory for new objects.
JDK Architecture & API’s Details
In this figure, you will get an idea of how these libraries and API’s are distributed on different levels.
Difference between API and Methods
API (Application Programming Interface) interfaces that the rest of the world sees and can use. A Method can be part of the public interface or not. But an API executes a set of methods.
In java, APIs provide through the interface which is really a set of public methods. An API has contract like tells about method signatures and return type.
For Example List API’s provide different method signature and expected result as return type so that you can use according to your convenience.
Difference between JDK and SDK
JDK(Java Development Kit) is an extended subset of a SDK (Software Development Kit).
- JDK includes tools for developing, debugging and monitoring of Java Program. It mainly responsible for the writing and running of Java programs.
- SDK is composed of extra software related to a Web application or mobile application etc. such as Application Server, Documentation, Debuggers, Code Samples, Tutorials, GlassFish server, MySQL and IDE Netbeans.
Now, Oracle strongly suggests using the term JDK to refer to the Java SE Development Kit. The Java EE SDK is now available with or without the JDK, by which they specifically mean the Java SE 7 JDK.
See Also: Java Versions History
You must be logged in to post a comment.