|
|
|
|
|
by mantraxC
4375 days ago
|
|
> He was dispelling the common misconception is that Python is an "interpreted language" and Java is a "compiled language," when the reality is that (in their most common implementations) both of these languages are compiled to bytecode that is then interpreted by a VM. Good example of how you can take an issue and confuse it even more with tricky use of words, however despite both Java and Python have a VM, and despite both have bytecode, they're at the different ends of the spectrum from "naively interpreted from source" to "fully compiled". It helps that Java was designed in a way that allows most of the code to be JIT compiled, which leaves interpreting for a few edge cases. |
|