Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
How does the compiler works? | Deep Java Structure
Java Extended
course content

Contenido del Curso

Java Extended

Java Extended

1. Deep Java Structure
2. Methods
3. String Advanced
4. Classes
5. Classes Advanced

bookHow does the compiler works?

How Does it Actually Work?

Java is a language with a complex internal structure. Let's delve into the internals of Java and briefly understand how everything is organized.

JVM

JVM is responsible for translating Java bytecode, which is platform-independent, into machine-specific instructions that can be understood by the underlying operating system. It provides a layer of abstraction between the Java program and the hardware, allowing Java programs to run on different platforms without the need for recompilation. In simple terms, JVM is like a virtual computer that enables the execution of Java programs on different systems.

ByteCode

The most important thing to understand now is that this is how Java achieves its famous cross-platform compatibility and flexibility.

JRE

It includes the Java Virtual Machine (JVM), which is responsible for executing the bytecode of Java programs, and a set of core libraries and runtime components. The JRE allows you to run Java applications on your computer without needing to compile the source code.

In simple terms, it's the environment that enables you to run Java programs on your system.

JDK

It includes the Java compiler, which translates human-readable Java source code into bytecode that can be executed by the Java Virtual Machine (JVM). The JDK also includes various libraries, development tools, and documentation that assist in the creation, testing, and debugging of Java programs.

In simple terms, it's a package that allows you to write, compile, and build Java applications.

Libraries

We will later explore what they are and how to import them into our code. For now, it's important to remember that they are located in the JRE (Java Runtime Environment).

Compiler

Debugger

Overall

I understand that this may seem difficult to grasp, but this information is important for understanding how the programming language perceives everything from its perspective.

This is also the main reason why the compiler takes so long to work. Due to all this structure, sometimes the code can take 10-15 seconds to compile.

1. What is the role of JVM in Java?
2. What does JRE stand for?
3. Which package includes the Java compiler and development tools?
What is the role of JVM in Java?

What is the role of JVM in Java?

Selecciona la respuesta correcta

What does JRE stand for?

What does JRE stand for?

Selecciona la respuesta correcta

Which package includes the Java compiler and development tools?

Which package includes the Java compiler and development tools?

Selecciona la respuesta correcta

¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 1. Capítulo 1
some-alt