What is meant by framework, programming language and scripting language?

前端 未结 4 1480
暖寄归人
暖寄归人 2020-12-29 05:20

What is meant by framework, programming language and scripting language?

4条回答
  •  感动是毒
    2020-12-29 05:52

    Frameworks are libraries or templates of pre-written stuff you can re-use. They often come with a pre-imposed structure and philosophy of how to approach a domain of problems.

    Programming language is a superset of scripting language and includes anything you yourself write that makes a computer do something.

    Scripting languages are traditionally interpreted meaning they are useful for smaller more light-weight purposes, but that definition is getting vaguer since JavaScript - a 'scripting language', for example, is not interpreted so much these days.

提交回复
热议问题