JVM runtime data area - native method stack

1. Native method stack

  • The local method stack stores the called local (Native) method, such as hashcode().

  • The native method stack is also thread- private , and the native method is implemented by the C language.

  • If the stack capacity requested by the thread is greater than the maximum capacity allowed by the native method stack, a stack overflow problem will occur .

  • Its memory space can be adjusted.

Guess you like

Origin blog.csdn.net/m0_62565675/article/details/131775899