JAVA study notes-JVM, JDK and JRE (including JDK download and installation)

java virtual machine-JVM⭐

____JVM (Java Virtual Machine): Java Virtual Machine, referred to as JIVM, is a hypothetical computer that runs all Java programs. It is the operating environment of Java programs and is one of the most attractive features of Java. The Java code we write runs on the JVM.

____Cross-platform

____Any software must run on the operating system, and the software we write in Java can run on any operating system. This feature is called the cross-platform feature of the Java language. This feature is implemented by JVM, the program we write runs on JVM, and JVM runs on operating system.
Insert picture description here
As shown in the figure, the Java virtual machine itself does not have cross-platform functions. There are different versions of the virtual machine under each operating system, and these different versions of the virtual machine (JVM) are not universal . Each JVM can only be used in a specific Only the Java program itself can be used universally.

JRE

____JRE (Java Runtime Environment): is the runtime environment of Java programs, including JVM and core class libraries required by runtime.

JDK

____JDK (Java Development Kit): is a Java program development kit, including RE and tools used by developers.



We want to run an existing Java program, then just install JRE.
We want to develop a brand new Java program, so we must install the JDK.

Diagram of the relationship between the three Js

The relationship between the three

Download and installation of JDK

Go to the official website https://www.oracle.com/index.html to find Resources and click Software Download (Google browser recommends not to open the English translation, otherwise it may display an error) If
Insert picture description here
you find the java
Insert picture description here
page, it will automatically jump down, and then click Java ( JDK) for Developers
Insert picture description here
Insert picture description here
select the file download of the corresponding system, you can
Insert picture description here
pay attention to the installation folder path without spaces and Chinese
** This note is based on the creation of the b station learning video. Corresponding portal

Guess you like

Origin blog.csdn.net/weixin_45746074/article/details/113153734