Full GC question

referencing document,https://java.sun.com/j2se/reference/whitepapers/memorymanagement_whitepaper.pdfwith the flags:XX:+UseParallelGCXX:+UseParallelOldGCWhen a full GC occurs, does the mark-sweep-compact algorithm get applied to the young generation?
[291 byte] By [jevans123a] at [2007-11-26 21:18:11]
# 1
Yes, all live objects from the young and old gen will be compacted into the old gen (and maybe into the young gen too, if they do not fit in the old gen).Tony, HS GC Group
TonyPrintezisa at 2007-7-10 2:56:58 > top of Java-index,Java HotSpot Virtual Machine,HotSpot Internals...