开发者

JVM Stack Variables

I understand JVM creates a Stack for each thread and that Stack contains calls to 开发者_JAVA百科other methods as thread invokes them. I don't understand when it says Stack will also have local variables and partial results. I thought global and local variables (primitives and references) would exist in heap rather than in Stack, can anybody please elaborate what it does it mean? Secondly it says partial results, does it mean when thread switching happens those half executed results (copies) from local and instance variables?

Thanks

-Abidi


Each JVM has a runtime stack of method invocation frames. Each method frame contains

  • A reference to the Java class containing that method.
  • An operand stack for holding temporary values.
  • A "local variables" array for holding function arguments and temporary results.

This local variables array exists so that when the function is first called, the arguments to that function can be stored somewhere. The local variables array does not actually hold all the local variables declared in the Java source code; rather, it's more of a temporary buffer for holding references to Java objects declared elsewhere in the heap, or to hold values that are referenced enough times that putting them on the runtime stack would be slow or inefficient.

In short, you are correct that locals and globals are stored in the heap. The "local variables" array in Java threads doesn’t correspond to these locals, but rather to scratch space used by the the thread while interpreting the bytecode for the method.


Each JVM has a runtime stack of method invocation frames. Each method frame contains

A reference to the Java class containing that method.
An operand stack for holding temporary values.
A "local variables" array for holding function arguments and temporary results.

This local variables array exists so that when the function is first called, the arguments to that function can be stored somewhere. The local variables array does not actually hold all the local variables declared in the Java source code; rather, it's more of a temporary buffer for holding references to Java objects declared elsewhere in the heap, or to hold values that are referenced enough times that putting them on the runtime stack would be slow or inefficient.

In short, you are correct that locals and globals are stored in the heap. The "local variables" array in Java threads don't correspond to these locals, but rather to scratch space used by the the thread while interpreting the bytecode for the method.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜