Java programs in the JVM and the DVM execution process:
#jvm和dvm的区别 (Dalvil VM) Google just developed the android system with JVM,JVM Copyright belongs to the Sun Company is Oracle Company, later with the DVM, due to copyright issues. DVM is a 2-time development based on OPENJDK, and the DVM solves the JVM's efficiency problems, and the JVM runs less efficiently. The JVM's class code must be interpreted inside the JVM and executed inside the underlying operating system, and the actual execution is the underlying operating system execution, which is inefficient because it must be interpreted within the JVM. The DVM will first convert the class file to the Dex file and then explain the execution so that the conversion will be more efficient. If there are 1000 class files inside the JVM that are loaded into the JVM for interpretation, then it will be inefficient to traverse the 1000 class files for loading operations. If you first convert these 1000 class files to a Dex file, then loading the explanation to execute this one Dex file is much more efficient. Java code is a compiled export run, Windows has Windows Jvm,linux Linux JVM,
Android + JVM and DVM differences (Dalvil VMs)