Heap
The Java virtual machine heap is the area of memory used by the JVM, specifically HotSpot, for dynamic memory allocation. The heap is divided into generations:
- The young generation stores short-lived objects that are created and immediately garbage collected.
- Objects that persist longer are moved to the old generation (also called the tenured generation).
- The permanent generation (or permgen) is used for class definitions and associated metadata.
Originally there was no permanent generation, and objects and classes were stored together in the same area. But as class unloading occurs much more rarely than objects are collected, moving class structures to a specific area allows significant performance improvements.
Read more about this topic: Java Virtual Machine
Famous quotes containing the word heap:
“We cannot be any stronger in our foreign policyfor all the bombs and guns we may heap up in our arsenalsthan we are in the spirit which rules inside the country. Foreign policy, like a river, cannot rise above its source.”
—Adlai Stevenson (19001965)
“Self-expression is not enough; experiment is not enough; the recording of special moments or cases is not enough. All of the arts have broken faith or lost connection with their origin and function. They have ceased to be concerned with the legitimate and permanent material of art.”
—Jane Heap (c. 18801964)
“I will heap disasters upon them, spend my arrows against them:”
—Bible: Hebrew, Deuteronomy 32:23.