FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [View Raw Code]   [Original HTTPS Page]

Java/src/internal_program.md at main · aditya-shri/Java · GitHub

Latest commit

 

History

History
31 lines (21 loc) · 751 Bytes

File metadata and controls

31 lines (21 loc) · 751 Bytes
layout default
title Background Process
nav_order 5

What happens at compile time?


At compile time, java file is compiled by Java Compiler (It does not interact with OS) and converts the java code into bytecode.


What happens at runtime?


At runtime, following steps are performed:

Classloader:

is the subsystem of JVM that is used to load class files.

Bytecode Verifier:

checks the code fragments for illegal code that can violate access right to objects.

Interpreter:

read bytecode stream then execute the instructions.


Back | FazBrowse Home | New Git URL