Differences Between Inter-Printer and Compilation

Asked 2 years ago, Updated 2 years ago, 67 views


What is the difference between an interprinter language and a language? I'm not sure.
I heard that compilation type processing speed is faster, but
What are the advantages of the inter-printer type?

programming-language

2022-09-30 21:27

2 Answers

Strictly speaking, the interpreter runs sequentially, and the compile runs after translating it into a format that the computer can interpret directly.
However, sequential interpretation of interpreters is so slow that computers can't interpret them directly, but after translating them into intermediate forms, a method of interpreting and executing the intermediate forms has emerged.Specifically, Perl and Visaul Basic 6.0 and earlier are affected.
It also introduced a method of compiling to an intermediate format to make it dependent on a particular computer and performing it while translating the intermediate format into a format that the computer can interpret directly.Specifically, Java, C#, Visual Basic.NET, etc.

Therefore, the boundary between interprinter and compilation languages is no longer clear.


2022-09-30 21:27

Compiling is done once for the target machine, while interpreters run and analyze sequentially, which is overwhelmingly slower than compilers.
Interpreters have the advantage of being able to run as long as they have a source, being able to distribute the source, being gentle and easy to learn, and being easy to understand and debug when looking at the source.BASIC is just like that.


2022-09-30 21:27

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.