How does an interpreter/compiler work
问题 How does an interpreter/compiler work? What is the difference between interpreter and compiler. 回答1: Compilers Compilers were the first sort of translator program to be written. The idea is simple: You write the program, then hand it to the compiler which translates it. Then you run the result. Interpreters An interpreter is also a program that translates a high-level language into a low-level one, but it does it at the moment the program is run. You write the program using a text editor or