next up previous
Next: Example of evolution of Up: Unit 11 Previous: Heap management and garbage

Stack of activation records

A stack is a linear data structure with LIFO access strategy: LIFO stands for Last-In-First-Out, which means that the last element that entered the stack is the first element that leaves the stack among those present (confront with a stack of plates).

At run-time, the JVM manages the stack of activation records (AR):

Each AR contains:


next up previous
Next: Example of evolution of Up: Unit 11 Previous: Heap management and garbage