Home > Java > Javagetting Started > body text

What is JVM? Where is it?

王林
Release: 2020-08-05 16:47:29
forward
3426 people have browsed it

What is JVM? Where is it?

JVM is the abbreviation of Java Virtual Machine (Java Virtual Machine). JVM is a specification for computing devices. It is a fictitious computer that is run on an actual computer. It is realized by simulating various computer functions.

(Recommended tutorial: java learning website)

Popular understanding:

JVM is essentially a program that can recognize .class bytecode file (which stores the binary code generated after we compile .java), and can parse its instructions, and finally call the functions on the operating system to complete the operation we want!

Regarding the cross-platform nature of the Java language, it is because of the JVM. We can imagine it as an abstraction layer. As long as this abstraction layer JVM correctly executes the .class file, it can run on various operating systems. Got it! This is compile once and run many times.

(Video tutorial recommendation: java learning)

JVM location:

JVM runs on the operating system and has nothing to do with the hardware. direct interaction.

The above is the detailed content of What is JVM? Where is it?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template