JVM native method

1. Overview of the local method interface

Concept: A native method is an interface for Java to call non-Java code.

effect:

  • Interact with outside the java environment
  • interact with the operating system
  • sun‘s Java

Two, the local method stack

        The Java virtual machine stack is used to manage the calls of java methods, and the local method stack is used to manage the calls of local methods

Guess you like

Origin blog.csdn.net/weixin_44302046/article/details/130793763