In Java 8 or later, which memory area stores class metadata at runtime?
2025
In Java 8 or later, which memory area stores class metadata at runtime?
- A.
Stack
- B.
Heap
- C.
Metaspace
- D.
PermGen
- E.
None of the above
Attempted by 60 students.
Show answer & explanation
Correct answer: C
Correct answer: Metaspace.
From Java 8 onward, class metadata is stored in Metaspace, which replaced the older Permanent Generation area. Metaspace uses native memory rather than the old PermGen space.
Loading lesson…