I'm reading java language spec and jvm spec.
but I can't find the reference about PermGen or Metaspace.
As far as I know, PermGen in java7 is changed to Metaspace in java8.
But I can't find about it in official documents like java spec.
I'm trying to understand java's memory area right way.
In JVM 7 and 8 spec, there is only the reference about 6 runtime data area which are PC Register
, JVM stacks
, Heap
, Method Area
, Runtime Constant Pool
, Native Method stacks
.
So, when can I get the information from?
I appreciate you.