The internal structure of the JVM stack frame

The internal structure of the stack frame

Each stack frame stores:

  • Local variables table (Local variables)
  • Operand stack (or expression stack)
  • Dynamic Linking (or method reference pointing to runtime constant pool)
  • Method return address (Return Address) (or the definition of normal exit or abnormal exit of the method)
  • Some additional information

Insert picture description here

Guess you like

Origin blog.csdn.net/qq_37924905/article/details/108737527