【发布时间】:2017-08-21 21:27:00
【问题描述】:
从这个答案https://stackoverflow.com/a/17478535/1727934 可以知道,Android 不支持虚拟内存。
然后从维基百科,我们可以知道:
分页是虚拟内存实现的重要组成部分
https://en.wikipedia.org/wiki/Paging
但是根据官方文档,我们可以看到:
Android Runtime (ART) 和 Dalvik 虚拟机使用分页和内存映射 (mmapping) 来管理内存。
https://developer.android.com/topic/performance/memory-overview.html
我对此感到困惑:分页用于虚拟内存,但Android不支持虚拟内存,那么这个分页在Android中是什么意思?
【问题讨论】:
标签: android memory memory-management paging virtual-memory