解释一下jvm内存结构?
谁能解释一下 JVM 内存的结构,或者我应该说 JVM 中的运行时数据区域。
Can anyone please explain the structure of JVM memory or I should say runtime data areas in JVM.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Eden、new gen、old gen、perm space - 对象从一个空间迁移到另一个空间,具体取决于它们存活的 gc 周期数。
您可以在此处阅读相关内容。
Eden, new gen, old gen, perm space - objects are migrated from one to the other depending on how many gc cycles they survive.
You can read about it here.
您可以在此处了解 JVM 内存结构。
You can read about the JVM memory structure here.