JAVA虚拟机内存结构与物理机器进程内存结构的对应

JAVA虚拟机是一台“计算机”,它的内存结构跟物理机进程的内存结构有点类似:

PC Register: 相当于普通进程中Text段中的PC值

VM Stack: 相当于普通进程中的Stack

Heap:     相当于普通进程中的Heap

Method Area:   相当于普通进程中的Text段(指令), 和Static Data(常量、静态变量)

以上对应关系都是模糊的,只是让你对JVM内存结构有个感性的认识

Leave a Comment

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.