Stack

Java's implementation of Stack Space.

  • Each thread has a private JVM stack created at same time as thread
    • Used to store data and partial results which will be needed while returning value for method and performing dynamic linking
  • Stores Stack Frames
  • References to objects stored here

Children
  1. Class (Method) Area
  2. Stack Frame

Backlinks