Explain the jvm memory structure?
Can anyone please explain the structure of JVM memory or I should s开发者_JAVA技巧ay runtime data areas in JVM.
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.
You can read about the JVM memory structure here.
精彩评论