To understand Dalvik, you must first understand that Android is not Java. Android is “Java based”. Android programs take an additional step after Java file is compiled into Java bytecode. The Java bytecode will then be converted into Dalvik bytecode. This is because Android does not have a Java virtual machine. Dalvik replaces the Java VM on the Android platform. Dalvik differs from the Java virtual machine in a number of ways. Many of these differences are necessary because mobile phones typically have lower memory and less powerful hardware than the platforms that Java typically runs on.


When you run more than one Java program at a time, each program starts its own virtual machine. Parts of the VM are read-only but each Java VM has its own copy of those read-only portions. To optimize the low memory environment of most mobile devices, Dalvik has been designed to share a single copy of the read-only parts of the virtual machine. When your Android phone runs more than one application at a time, each application runs in its own Dalvik virtual machine. However, all of those Dalvik virtual machines share a single copy of the read-only portions. This greatly reduces memory consumption.


The Dalvik machine is register-based rather than stack-based like the Java virtual machine. In a stack based machine, the computer’s memory forms a stack. Instructions are taken from the top of the stack and moved into memory for execution. Register based systems use a series of memory registers rather than a stack. By being a register based machine, Dalvik can get better performance from a limited memory architecture.

原文=>http://www.learncomputer.com/what-is-dalvik/

更多相关文章

  1. 原文:Android Theme XML
  2. Android Fresco图片处理库用法API英文原文文档2-2(Facebook开源An
  3. Android Fresco图片处理库用法API英文原文文档4(Facebook开源Andr

随机推荐

  1. VMware Workstation中CentOS救援模式进入
  2. 聊聊TCP连接耗时的那些事儿
  3. 磁盘开篇:扒开机械硬盘坚硬的外衣!
  4. CentOS 7 单用户模式修改密码
  5. 带你深入理解内存对齐最底层原理
  6. 磁盘分区也是隐含了技术技巧的
  7. CentOS7配置IP和远程连接
  8. 我们怎么解决机械硬盘既慢又容易坏的问题
  9. 从DDR到DDR4,内存核心频率其实基本上就没
  10. 【讲清楚,说明白!】Ansible使用role实战