Rajvir Singh
Rajvir Singh

Reputation: 1

Explain the jvm memory structure?

Can anyone please explain the structure of JVM memory or I should say runtime data areas in JVM.

Upvotes: 0

Views: 2167

Answers (2)

Rajvir Singh
Rajvir Singh

Reputation: 1

You can read about the JVM memory structure here.

Upvotes: 0

duffymo
duffymo

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

Related Questions