About 41,900 results
Open links in new tab
  1. How does an interpreter/compiler work - Stack Overflow

    Mar 4, 2010 · Performance A compiler takes quite a long time to translate the source program to native machine code, but subsequent execution is fast An interpreter starts executing the …

  2. Compiled vs. Interpreted Languages - Stack Overflow

    Jul 16, 2010 · A compiler and an interpreter do the same job: translating a programming language to another programming language, usually closer to the hardware, often direct executable …

  3. Exact difference between Compiler and Interpreter?

    Sep 6, 2010 · Another extant version: what is the difference between compiler and interpreter?, and similar topics What is the difference between implementing a compiler and an interpreter?, …

  4. Compiler vs Interpreter vs Transpiler - Stack Overflow

    Aug 31, 2016 · A source-to-source compiler translates between programming languages that operate at approximately the same level of abstraction, while a traditional compiler translates …

  5. What are the differences between a Just-in-Time-Compiler and an ...

    Mar 11, 2010 · What are the differences between a Just-in-Time-Compiler and an Interpreter, and are there differences between the .NET and the Java JIT compiler?

  6. What is the difference between implementing a compiler and an ...

    Jan 24, 2009 · I understand the "functional" difference between a compiler and an interpreter. What i'm looking for is the difference as to how you implement an interpreter, vs a compiler. I …

  7. Why is an interpreter slower than a compiler in practice?

    Nov 4, 2011 · In interpreted languages, the CPU usually runs the interpreter or virtual machine. This makes interpreted languages generally slower than compiled languages, due to the …

  8. java - JIT vs Interpreters - Stack Overflow

    Sep 15, 2010 · I couldn't find the difference between JIT and Interpreters. Jit is intermediary to Interpreters and Compilers. During runtime, it converts byte code to machine code ( JVM or …

  9. Interpreter vs Compiler: What Are the Differences and Benefits?

    Sep 4, 2018 · An interpreter translates and executes code line-by-line, making it slower and less efficient, while a compiler translates the entire source code into machine code, creating an …

  10. Is the JVM a compiler or an interpreter? - Stack Overflow

    Oct 6, 2011 · It acts as an interpreter from the outside, but really behind the scenes it is compiling into machine code. The JVM should not be confused with the Java compiler, which compiles …