DalvikVM Vs JavaVM in Android?

前端 未结 2 1237
-上瘾入骨i
-上瘾入骨i 2021-01-14 09:07

In General, Android runs the each App as a seperate process in Dalvik Vm. I got this from the Doc. But i can not understand what is the main reason to go to Dalvik VM for An

2条回答
  •  日久生厌
    2021-01-14 09:26

    Dalvik VM is used in system specially in embedded systems where memory is low and processing speed of processor is not high. Dalvik uses dex files to execute which is converted and zipped version of class files.It is very very small in size roughly less or equal of compressed jar file of same class files.

提交回复
热议问题