What's the difference between compiled and interpreted language?

前端 未结 7 1385
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++.

提交回复
热议问题