Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/ch2_firstjavaprogram.ptx
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@ $
<idx>JVM</idx>
<idx>byte code</idx>
The job of the compiler is to turn your java code into language that the Java Virtual Machine (<term>JVM</term>) can understand.
We call the code that the JVM understands <term>byte code</term>.
The JVM interprets the byte code much like the Python interpreter interprets your Python.
JVM is a <term>bytecode</term> interpreter that allows Java programs to run on any platform without having to modify them.
The JVM interprets the byte code much like the Python interpreter does with Python.
However since byte code is much closer to the native language of the computer it can run faster.
</p>

Expand Down