What is the difference between DVM and JVM?

后端 未结 8 1105
遥遥无期
遥遥无期 2020-12-12 12:34

What is difference between Java Virtual Machine and Dalvik Virtual Machine?

相关标签:
8条回答
  • 2020-12-12 13:17

    The jvm architecture is stack-based whereas the dvm architecture is register-based. Stack-based machines require more instructions(i.e. larger instruction set) than register-based machines for the same task. On the other side, each instruction in the register-based machines are larger.

    0 讨论(0)
  • 2020-12-12 13:22

    Here is a tabular comparison(Source: Mr. Atul):

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