We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bbac2e0 + 65c62eb commit ffcb205Copy full SHA for ffcb205
1 file changed
source/ch2_firstjavaprogram.ptx
@@ -240,8 +240,8 @@ $
240
<idx>JVM</idx>
241
<idx>byte code</idx>
242
The job of the compiler is to turn your java code into language that the Java Virtual Machine (<term>JVM</term>) can understand.
243
- We call the code that the JVM understands <term>byte code</term>.
244
- 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.
245
However since byte code is much closer to the native language of the computer it can run faster.
246
</p>
247
0 commit comments