Why are dynamically typed languages slow?

前端 未结 6 705
南笙
南笙 2020-12-23 22:49

What makes it hard to speed up dynamically typed languages when compared to statically typed languages . In other words what is inherent property of statically typed languag

6条回答
  •  Happy的楠姐
    2020-12-23 23:07

    It's because statically typed languages are often compiled to machine code while dynamically typed languages are in most cases run by an interpreter.

提交回复
热议问题