What's the difference between compiled and interpreted language?

前端 未结 7 1387
Happy的楠姐
Happy的楠姐 2020-12-02 03:46

After reading some material on this subject I\'m still not sure what the difference between a compiled language and an interpreted language is. I was told this is one of the

相关标签:
7条回答
  • 2020-12-02 04:20

    Interpreted language is executed at the run time according to the instructions like in shell scripting and compiled language is one which is compiled (changed into Assembly language, which CPU can understand ) and then executed like in c++.

    0 讨论(0)
提交回复
热议问题