Reputation: 1
Can anyone please explain the structure of JVM memory or I should say runtime data areas in JVM.
Upvotes: 0
Views: 2167
You can read about the JVM memory structure here.
Reputation: 308763
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.
Upvotes: 1