Home > Java > Javagetting Started > How does a java program run?

How does a java program run?

王林
Release: 2019-11-20 09:21:49
Original
6273 people have browsed it

How does a java program run?

Program running process:

1. First compile the Java code into bytecode, that is, compile the ".java" type file into ".class" type of file.

The approximate execution flow of this process: Java source code -> Lexical analyzer -> Syntax analyzer -> Semantic analyzer -> Bytecode generator ->Finally generate bytecode , the execution failure of any node will cause the compilation to fail;

2. Place the class file into the Java virtual machine. This virtual machine usually refers to Oracle’s official Hotspot JVM;

3. The Java virtual machine uses the class loader (Class Loader) to load the class file;

4. After the class loading is completed, bytecode verification will be performed. The bytecode verification will be processed by the JVM interpreter. The bytecode is translated into machine code and executed by the operating system, but not all codes are interpreted and executed, and the JVM has optimized this.

For example, take the Hotspot virtual machine, which itself provides JIT (Just In Time), which is what we usually call a dynamic compiler. It can compile hot code into machine code at runtime. This At that time, the bytecode becomes compiled and executed.

Recommended tutorial: java introductory tutorial

The above is the detailed content of How does a java program run?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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