Most objects die young. The JVM exploits this by collecting the young generation frequently (fast minor GCs) and promoting long‑lived objects to the old generation, which is collected less often. This improves throughput and pause times.
Expanding on the short answer — what usually matters in practice:
A tiny example (an explanation template):
// Example: discuss trade-offs for "generational-garbage-collection:-why-does-the-jv"
function explain() {
// Start from the core idea:
// Most objects die young. The JVM exploits this by collecting the young generation frequentl
}