What is the difference between JDK, JRE and JVM
The content of this article is to introduce what JDK, JRE and JVM are respectively, so that everyone can understand the differences between JDK, JRE and JVM. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
JVM
JVM (Java Virtual Machine) is an abstract machine. It's called a virtual machine because it doesn't actually exist. It is a specification that provides a runtime environment that can execute Java bytecode. It can also run programs written in other languages and compiled to Java bytecode.
JVM is available for many hardware and software platforms. JVM, JRE and JDK are platform dependent as the configuration of each operating system is different from each other. However, Java is platform independent. JVM has three concepts: specification, implementation and instance.
JVM mainly performs the following tasks:
1. Loading code
2. Verification code
3. Execution code
4. Provide runtime environment
JRE
JRE is the acronym for Java Runtime Environment, also known as Java RTE; it is the JVM's Realization is something that actually exists.
JRE is a set of software tools for developing Java applications to provide a runtime environment; it contains a set of libraries and other files used by the JVM at runtime.
JDK
JDK is the acronym for Java Development Kit, which is a software development environment for developing Java applications and applets ; it actually exists. It contains JRE development tools.
JDK contains a private Java Virtual Machine (JVM) and some other resources such as interpreter/loader (java), compiler (javac), archiver (jar), documentation generator (Javadoc), etc. , to complete the development of Java applications.
Summary of the differences between JVM, JRE, and JDK:
JVM is a specification that provides a runtime that can execute Java bytecode time environment.
JRE = JVM library for running Java applications.
JDK = JRE Tools for developing Java applications.
The relationship diagram between the three:
The above is the entire content of this article, I hope it can help everyone learn Helps. For more related video tutorials, please visit: JavaTutorial!
The above is the detailed content of What is the difference between JDK, JRE and JVM. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Prerequisites for running JAR files Running JAR files on a Linux system requires the installation of the Java Runtime Environment (JRE), which is the basic component required to execute Java applications, including the Java Virtual Machine (JVM), core class libraries, etc. Many mainstream Linux distributions, such as Ubuntu, Debian, Fedora, openSUSE, etc., provide software libraries of JRE packages to facilitate user installation. The following article will detail the steps to install JRE on popular distributions. After setting up the JRE, you can choose to use the command line terminal or the graphical user interface to start the JAR file according to your personal preference. Your choice may depend on familiarity with Linux shells and personal preference

Despite the large number of applications that appear every once in a while, Java remains by far one of the most used and important programming languages. Many applications rely on Java on Windows operating systems, and updating it means improving performance by providing stability and security for Java applications to run safely. You can also install Java on Linux and macOS platforms. The only difference is the package/file for each platform. Now, with Windows 11, it’s time to download Java and in today’s article, we will take you through the simple steps to install it on your device. Which version of Java should I download? The Java version you downloaded

This project is designed to facilitate developers to monitor multiple remote host JVMs faster. If your project is Spring boot, it is very easy to integrate. Just introduce the jar package. If it is not Spring boot, don’t be discouraged. You can quickly initialize a Spring boot program and introduce it yourself. Jar package is enough

The oracle database requires jdk. The reasons are: 1. When using specific software or functions, other software or libraries included in the JDK are required; 2. Java JDK needs to be installed to run Java programs in the Oracle database; 3. JDK provides Develop and compile Java application functions; 4. Meet Oracle's requirements for Java functions to help implement and implement specific functions.

1. Explain that Java provides a dynamic proxy class Proxy. Proxy is not the class of what we call proxy objects, but provides a static method (newProxyInstance) to create proxy objects to obtain proxy objects. 2. Instance publicclassHelloWorld{publicstaticvoidmain(String[]args){//Get the proxy object ProxyFactoryfactory=newProxyFactory();SellTicketsproxyObject=factory.getProxyObject();proxyO

Deepin Linux system is a domestic operating system based on the Linux kernel. It has the characteristics of stability, security, and ease of use. In Deepin Linux system, installing JDK (Java Development Kit) is a necessary step for developing Java applications. This article will introduce in detail how to Install JDK in Deepin Linux system. Installation steps: Open the terminal of Deepin Linux system. Use the command line to download the JDK installation package. The command is as follows: ``shellsudoapt-getinstallopenjdk-11-jdk`` Wait for the download to complete and the system will automatically install the JDK. To verify whether the JDK is installed successfully, enter the following command: ```javaj

The linux jdk directory is in the bin directory. The specific search method is: 1. Find the execution directory of javad through the "whereis java" command; 2. Find the link file through the execution file; 3. Through "ls -lrt /etc/alternatives/java" Just run the command to find the installation directory.

JVM command line parameters allow you to adjust JVM behavior at a fine-grained level. The common parameters include: Set the Java heap size (-Xms, -Xmx) Set the new generation size (-Xmn) Enable the parallel garbage collector (-XX:+UseParallelGC) Reduce the memory usage of the Survivor area (-XX:-ReduceSurvivorSetInMemory) Eliminate redundancy Eliminate garbage collection (-XX:-EliminateRedundantGCs) Print garbage collection information (-XX:+PrintGC) Use the G1 garbage collector (-XX:-UseG1GC) Set the maximum garbage collection pause time (-XX:MaxGCPau
