▲ | dpassens 2 days ago | |||||||||||||
I assume GP meant that a lot of compilers also interpret and interpreters also compile. For compilers, constant folding is a pretty obvious optimization. Instead of compiling constant expressions, like 1+2, to code that evaluates those expressions, the compiler can already evaluate it itself and just produce the final result, in this case 3. Then, some language features require compilers to perform some interpretation, either explicitly like C++'s constexpr, or implicitly, like type checking. Likewise, interpreters can do some compilation. You already mentioned bytecode. Producing the bytecode is a form of compilation. Incidentally, you can skip the bytecode and interpret a program by, for example, walking its abstract syntax tree. Also, compilers don't necessarily create binaries that are immediately runnable. Java's compiler, for example, produces JVM bytecode, which requires a JVM to be run. And TypeScript's compiler outputs JavaScript. | ||||||||||||||
▲ | Imustaskforhelp 2 days ago | parent | next [-] | |||||||||||||
Then what is the difference, I always thought of Java as closer to python in the sense that it's running the byte code. And python also has bytecode. I don't know what the difference is , I know there can be intepreters of compilers but generally speaking it's hard to find compilers of intepreters Eg C++ has compilers , intepreters both (cpi) , gcc Js doesn't have compilers IIRC , it can have transpilers Js2c is good one but i am not sure if they are failsafe (70% ready) , I also have to thank you , this is a great comment | ||||||||||||||
| ||||||||||||||
▲ | amszmidt 2 days ago | parent | prev | next [-] | |||||||||||||
While an interpreter can do optimizations, they do not produce "byte code" -- by that time they are compilers! As for the comparison with the JVM .. compare to a compiler that produces x86 code, it cannot be run without an x86 machine. You need a machine to run something, be it virtual or not. | ||||||||||||||
▲ | codr7 2 days ago | parent | prev [-] | |||||||||||||
Thank you! |