What is the difference between DVM and JVM?

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

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

8条回答
  •  被撕碎了的回忆
    2020-12-12 13:13

    Here, We can get the basic difference among the JVM (Java Virtual Machine) and DVM (Dalvik Virtual Machine). From figure it is obvious that DVM can run only .dex files. Dex compiler takes all .class (can be executed by JVM) files for all the classes belongs to application and convert all of them into a single .dex file. Later .dex file is executed by DVM. Additionally, .class files resulted by Javac (java compiler) from .java->.class.

提交回复
热议问题