什么是 Dalvik 和 dalvik 缓存?

发布于 2024-12-06 08:08:02 字数 61 浏览 0 评论 0原文

我知道这可能是 Android 中的一个基本问题。但是 Dalvik 和 dalvik-cache 是什么?

I know this may be a basic question in Android. But what is Dalvik and dalvik-cache?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

静谧幽蓝 2024-12-13 08:08:02

Dalvik 是 Android 使用的虚拟机。它通常被认为是 Java 虚拟机,尽管这并不完全正确。它使用与 Java 相同的对象模型,并且其内存模型也几乎相同。但 dalvik VM 是基于寄存器的 VM,与基于堆栈的 Java VM 不同。

因此,它使用与 Java 完全不同的字节码。但是,Android SDK 包含用于将 Java 字节码转换为 dalvik 字节码的 dx 工具,这就是您能够使用 Java 编写 Android 应用程序的原因。

当您说“dalvik-cache”时,我假设您指的是典型 Android 设备上的 /data/dalvik-cache 目录。当您在 Android 上安装应用程序时,它会对该应用程序的 dex 文件(包含该应用程序的所有 dalvik 字节码的文件)执行一些修改和优化。然后,它将生成的 odex(优化 dex)文件缓存在 /data/dalvik-cache 目录中,这样就不必每次都执行优化过程加载应用程序。

良好参考

Dalvik is the virtual machine that is used by Android. It is generally thought of as a Java virtual machine, although this is not precisely correct. It uses an object model that is identical to Java, and its memory model is also nearly equivalent. But the dalvik VM is a register based VM, as opposed to Java VMs, which are stack based.

Accordingly, it uses a completely different bytecode than Java. However, the Android SDK includes the dx tool to translate Java bytecode to dalvik bytecode, which is why you are able to write Android applications in Java.

When you say "dalvik-cache", I assume you mean the /data/dalvik-cache directory that can be found on typical Android devices. When you install an application on Android, it performs some modifications and optimizations on that application's dex file (the file that contains all the dalvik bytecode for the application). It then caches the resulting odex (optimized dex) file in the /data/dalvik-cache directory, so that it doesn't have to perform the optimization process every time it loads an application.

good reference

九公里浅绿 2024-12-13 08:08:02

Dalvik 是基于 java 的虚拟机,可在 Android 上运行 Android 应用程序。 Dalvik-cache是​​Dalvik VM的缓存区域,它是在Dalvik VM优化您的应用程序运行时创建的。

如果需要,您可以在互联网上查找更多有关 Dalvik VM 操作码和“普通”Java VM 操作码之间差异的信息。

Dalvik is the java based Virtual Machine that runs Android Apps on Android. Dalvik-cache is the cache area for Dalvik VM, it is created when the Dalvik VM optimizes your app for running.

You can look up more on the internet about the differences between Dalvik VM op-codes and a "normal" Java VM Op-codes if you want.

半透明的墙 2024-12-13 08:08:02

Dalvik 缓存只不过是存储为可执行文件的应用程序代码的临时编译。由于这些可以从 Dalvik 缓存外部的原始应用程序代码动态编译,因此您可以清除 Dalvik 缓存而不会造成任何实际损失。

Dalvik Caches are nothing but the temporary compilation of application code being stored as executables. As these can be compiled dynamically from the original application code sitting outside the Dalvik Cache, you can clear the Dalvik Cache without any real penalty.

电影里的梦 2024-12-13 08:08:02

Dalvik 缓存不再是现代 Android 版本的一部分; Android 4.4 KitKat 是最后一个使用这种结构的版本。请参阅https://en.wikipedia.org/wiki/Dalvik_(软件)了解更多详情。

The Dalvik cache is no part of modern Android versions anymore; Android 4.4 KitKat was the last to make use of this construction. See https://en.wikipedia.org/wiki/Dalvik_(software) for more details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文